diff --git a/client/less/main.less b/client/less/main.less index f5f123f62d..e32bbe7f3a 100644 --- a/client/less/main.less +++ b/client/less/main.less @@ -62,7 +62,7 @@ body.top-and-bottom-margins { } body.no-top-and-bottom-margins { - margin: 70px 20px 50px 20px; + margin: 70px 20px 0px 20px; } h1, h2 { @@ -401,6 +401,19 @@ thead { width: 50px; } +.brownie-points-nav { + @media (min-width: 991px) and (max-width: 999px) { + margin-right: -10px; + } +} + +.signin-button-nav { + @media (min-width: 991px) and (max-width: 1010px) { + margin-left: -10px; + margin-right: -5px; + } +} + .navbar-nav a { color: @gray-lighter; font-size: 20px; @@ -420,6 +433,7 @@ thead { margin-top: -2px !important; padding-top: 10px !important; padding-bottom: 10px !important; + margin-right: -12px; } .public-profile-img { diff --git a/client/main.js b/client/main.js index b75297031e..4905bc8e28 100644 --- a/client/main.js +++ b/client/main.js @@ -119,18 +119,16 @@ main.lockTop = function lockTop() { if ($('.editorScrollDiv').html()) { magiVal = $(window).height() - - $('.navbar').height() + - $('.footer').height(); + $('.navbar').height(); if (magiVal < 0) { magiVal = 0; } - $('.editorScrollDiv').css('height', magiVal - 85 + 'px'); + $('.editorScrollDiv').css('height', magiVal - 35 + 'px'); } magiVal = $(window).height() - - $('.navbar').height() + - $('.footer').height(); + $('.navbar').height(); if (magiVal < 0) { magiVal = 0; diff --git a/common/app/App.jsx b/common/app/App.jsx index 58704002ab..25ad3ad91e 100644 --- a/common/app/App.jsx +++ b/common/app/App.jsx @@ -3,7 +3,6 @@ import { contain } from 'thundercats-react'; import { Row } from 'react-bootstrap'; import { Nav } from './components/Nav'; -import { Footer } from './components/Footer'; export default contain( { @@ -52,7 +51,6 @@ export default contain( { this.props.children } -