summaryrefslogtreecommitdiffstats
path: root/webapp/components/navbar.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/navbar.jsx')
-rw-r--r--webapp/components/navbar.jsx14
1 files changed, 13 insertions, 1 deletions
diff --git a/webapp/components/navbar.jsx b/webapp/components/navbar.jsx
index 18ea84376..9a4475cc2 100644
--- a/webapp/components/navbar.jsx
+++ b/webapp/components/navbar.jsx
@@ -485,7 +485,7 @@ export default class Navbar extends React.Component {
className='description'
rootClose={true}
>
- <div className='description info-popover'/>
+ <div className='pull-right description info-popover'/>
</OverlayTrigger>
<a
href='#'
@@ -635,6 +635,12 @@ export default class Navbar extends React.Component {
message={channel.header}
options={{singleline: true, mentionHighlight: false}}
/>
+ <div
+ className='close__icon visible-xs-block'
+ onClick={() => this.refs.headerOverlay.hide()}
+ >
+ {'×'}
+ </div>
</Popover>
);
@@ -688,6 +694,12 @@ export default class Navbar extends React.Component {
}}
/>
</div>
+ <div
+ className='close__icon visible-xs-block'
+ onClick={() => this.refs.headerOverlay.hide()}
+ >
+ {'×'}
+ </div>
</Popover>
);
}