about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authorJessica Stokes <hello@jessicastokes.net>2017-01-04 19:30:39 -0800
committerJessica Stokes <hello@jessicastokes.net>2017-01-04 19:30:39 -0800
commit05cc5636d8d56f95e1428408f6fce87ffb7c1a42 (patch)
treeeeaeea509883078c18e491ff98f2a18dc7dc7c3c /app
parent9c493b1ea28ac3d36be367c019236394b6bd341d (diff)
Remove hamburger from "getting started"
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/components/features/getting_started/index.jsx12
1 files changed, 0 insertions, 12 deletions
diff --git a/app/assets/javascripts/components/features/getting_started/index.jsx b/app/assets/javascripts/components/features/getting_started/index.jsx
index 51f165f9e..9f47e7ab4 100644
--- a/app/assets/javascripts/components/features/getting_started/index.jsx
+++ b/app/assets/javascripts/components/features/getting_started/index.jsx
@@ -16,17 +16,6 @@ const mapStateToProps = state => ({
   me: state.getIn(['accounts', state.getIn(['meta', 'me'])])
 });
 
-const hamburgerStyle = {
-  background: '#373b4a',
-  color: '#fff',
-  fontSize: '16px',
-  padding: '15px',
-  position: 'absolute',
-  right: '0',
-  top: '-48px',
-  cursor: 'default'
-};
-
 const GettingStarted = ({ intl, me }) => {
   let followRequests = '';
 
@@ -37,7 +26,6 @@ const GettingStarted = ({ intl, me }) => {
   return (
     <Column icon='asterisk' heading={intl.formatMessage(messages.heading)}>
       <div style={{ position: 'relative' }}>
-        <div style={hamburgerStyle}><i className='fa fa-bars' /></div>
         <ColumnLink icon='globe' text={intl.formatMessage(messages.public_timeline)} to='/timelines/public' />
         <ColumnLink icon='cog' text={intl.formatMessage(messages.settings)} href='/settings/profile' />
         {followRequests}