Skip to content

Commit

Permalink
Add Header Styling
Browse files Browse the repository at this point in the history
  • Loading branch information
utkarshg6 committed May 7, 2021
1 parent 1e08b92 commit 189d993
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions components/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,34 @@ class MenuHeader extends Component {

return (
<>
<Menu style={{ height: "60px" }}>
<Menu text style={{
height: "100px",
// borderBottom: '1px solid black',
marginTop: '-5px',
boxShadow: '0 0 50px 0 rgba(76,147,230,0.1)'
}}>
<Menu.Item>
<Header as='h4'>
<Header
as='h4'
style={{
fontSize: '30px',
lineHeight: '20px',
marginLeft: '80px'
}}
>
Carbon Cost Explorer
</Header>
</Header>
</Menu.Item>
<Menu.Menu position='right'>
<Menu.Item
style={{ fontSize: '16px', marginRight: '45px' }}
onClick={() => this.setState({ activeWhatsThis: true })}
>
What's this?
</Menu.Item>

<Menu.Item
style={{ fontSize: '16px', marginRight: '80px' }}
onClick={() => this.setState({ activeAboutUs: true })}
>
About Us
Expand Down

0 comments on commit 189d993

Please sign in to comment.