Skip to content

Commit

Permalink
Added basic structure of logout.
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipGrebowski committed Dec 21, 2018
1 parent 0f7b0a5 commit 775a43c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions src/components/Core/Layout/NavigationBar/Logout/Logout.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from 'react';
import classes from './Logout.scss';

export default class Logout {

render() {
return(
<div className={classes.logoutWrapper}>
<span>Logout</span>
</div>
);
}
}
9 changes: 9 additions & 0 deletions src/components/Core/Layout/NavigationBar/Logout/Logout.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@import '../../../../../styles/settings/colors';

.logoutWrapper {

span {
font-size: 12px;
color: $player_icon_color;
}
}

0 comments on commit 775a43c

Please sign in to comment.