Skip to content

Commit

Permalink
White theme by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartozzz committed Aug 6, 2017
1 parent 7598912 commit b1bb1a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/scripts/components/App.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ class App extends Component {

render() {
const theme = className( {
"./styles/themes/light/index.min.css" : this.state.isThemeToggled,
"./styles/themes/dark/index.min.css" : !this.state.isThemeToggled
"./styles/themes/light/index.min.css" : !this.state.isThemeToggled,
"./styles/themes/dark/index.min.css" : this.state.isThemeToggled
} );

return (
Expand Down

0 comments on commit b1bb1a8

Please sign in to comment.