summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--webapp/components/navbar.jsx10
-rw-r--r--webapp/sass/responsive/_mobile.scss49
2 files changed, 35 insertions, 24 deletions
diff --git a/webapp/components/navbar.jsx b/webapp/components/navbar.jsx
index 9721ddee1..d71fec945 100644
--- a/webapp/components/navbar.jsx
+++ b/webapp/components/navbar.jsx
@@ -546,6 +546,12 @@ export default class Navbar extends React.Component {
{deleteChannelOption}
{leaveChannelOption}
{toggleFavoriteOption}
+ <div
+ className='close visible-xs-block'
+ onClick={() => this.refs.headerOverlay.hide()}
+ >
+ {'×'}
+ </div>
</ul>
</div>
</div>
@@ -671,7 +677,7 @@ export default class Navbar extends React.Component {
options={{singleline: true, mentionHighlight: false}}
/>
<div
- className='close__icon visible-xs-block'
+ className='close visible-xs-block'
onClick={() => this.refs.headerOverlay.hide()}
>
{'×'}
@@ -721,7 +727,7 @@ export default class Navbar extends React.Component {
/>
</div>
<div
- className='close__icon visible-xs-block'
+ className='close visible-xs-block'
onClick={() => this.refs.headerOverlay.hide()}
>
{'×'}
diff --git a/webapp/sass/responsive/_mobile.scss b/webapp/sass/responsive/_mobile.scss
index b66189c8b..8fff2853c 100644
--- a/webapp/sass/responsive/_mobile.scss
+++ b/webapp/sass/responsive/_mobile.scss
@@ -38,21 +38,24 @@
padding: 15px 20px 100px;
}
- .close__icon {
- @include border-radius(50%);
- border: 1px solid $white;
- bottom: 25px;
- color: $white;
+ .close {
+ font-family: 'Open Sans', sans-serif;
display: block;
- font-size: 23px;
- font-weight: 300;
+ position: fixed;
+ bottom: 25px;
height: 30px;
+ width: 30px;
+ margin-left: -15px;
left: 50%;
- line-height: 23px;
- margin-left: -25px;
- position: fixed;
+ font-size: 23px;
+ line-height: 27px;
+ border-radius: 50%;
+ border: 1px solid $white;
text-align: center;
- width: 30px;
+ opacity: 1;
+ text-shadow: none;
+ color: white;
+ font-weight: 200;
}
}
@@ -752,22 +755,24 @@
top: 42px;
width: 100%;
- &:after {
- @include border-radius(50%);
- border: 1px solid $white;
- bottom: 25px;
- color: $white;
- content: '\D7';
+ .close {
+ font-family: 'Open Sans', sans-serif;
display: block;
- font-size: 23px;
- font-weight: 300;
+ position: fixed;
+ bottom: 25px;
height: 30px;
+ width: 30px;
+ margin-left: -15px;
left: 50%;
+ font-size: 23px;
line-height: 27px;
- margin-left: -25px;
- position: fixed;
+ border-radius: 50%;
+ border: 1px solid $white;
text-align: center;
- width: 30px;
+ opacity: 1;
+ text-shadow: none;
+ color: white;
+ font-weight: 200;
}
> li {