diff --git a/src/js/App.js b/src/js/App.js index 27a37991..bbc9dd08 100755 --- a/src/js/App.js +++ b/src/js/App.js @@ -100,12 +100,12 @@ class App extends React.Component{ var height = Math.max(document.documentElement.clientHeight, window.innerHeight || 0) if (width <= 800){ - if (!global.slim_mode){ - global.slim_mode = true + if (!this.props.slim_mode){ + this.props.uiActions.setSlimMode(true) } } else { if (this.props.slim_mode){ - global.slim_mode = false + this.props.uiActions.setSlimMode(false) } } } diff --git a/src/scss/components/_filter-field.scss b/src/scss/components/_filter-field.scss index 59d6ea03..c711776a 100755 --- a/src/scss/components/_filter-field.scss +++ b/src/scss/components/_filter-field.scss @@ -48,6 +48,7 @@ .fa { top: 17px; left: 24px; + color: $white !important; } input { diff --git a/src/scss/views/_user.scss b/src/scss/views/_user.scss index aad0814b..f5196123 100755 --- a/src/scss/views/_user.scss +++ b/src/scss/views/_user.scss @@ -32,15 +32,19 @@ @include responsive( $bp_medium ){ .intro { - text-align: center; - .thumbnail { float: none; margin: 0 auto 20px; } + .liner { + padding: 15vh 10px 0; + } + h1 { padding-top: 0; + font-size: 3rem; + line-height: 3rem; } } }