Skip to content
This repository was archived by the owner on May 7, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/components/navigation-bar/NavigationBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Navbar = styled.div`
padding: 0 20px;
top: 0;
position: sticky;
background-color: ${styles.variables.white};
background-color: ${styles.variables.blue};
`;

const ItemList = styled.ul`
Expand Down Expand Up @@ -94,7 +94,7 @@ class NavigationBar extends Component {
<Navbar>
<div>
<MenuIcon icon={this.props.menuToggled ? faTimes : faBars} onClick={this.props.onMenuToggle} />
<Text>MyHome logo</Text>
<Text color={styles.colors.white}>MyHome logo</Text>
</div>
<div>
<span className="fa-layers fa-fw">
Expand All @@ -106,6 +106,7 @@ class NavigationBar extends Component {
<Text
fontWeight="500"
dropdownMargin="0 0 0 -30px"
color={styles.colors.white}
dropdown={
<ItemList>
{this.props.currentUser ?
Expand All @@ -128,7 +129,7 @@ class NavigationBar extends Component {
</ItemList>
}
>
{this.props.currentUser ? 'Tony Stark' : 'Guest'}
{this.props.currentUser ? 'Tony Stark' : 'Guest'}
</Text>
</span>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/styles/variables.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ export default {
viewHeight: 'calc(100vh - 50px)',
white: '#FFFFFF',
black: '#000000',
blue: '#0058FF'
};