Remove the extra white bar when logged in on the landing page
This commit is contained in:
parent
6517a4ed7f
commit
fc8988baa3
2 changed files with 6 additions and 1 deletions
|
@ -1417,6 +1417,11 @@ i.toggle-icon:hover {
|
|||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.landing-page.signedin .main-panel {
|
||||
background: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.landing {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -91,7 +91,7 @@ mixpanel.init("{{ mixpanel_key }}", { track_pageview : false, debug: {{ is_debug
|
|||
{% endif %}
|
||||
|
||||
</head>
|
||||
<body ng-class="pageClass" class="co-img-bg-network">
|
||||
<body ng-class="pageClass + ' ' + (user.anonymous ? 'anon' : 'signedin')" class="co-img-bg-network">
|
||||
<div id="co-l-footer-wrapper">
|
||||
<nav class="navbar navbar-default header-bar co-m-navbar co-fx-box-shadow" role="navigation"></nav>
|
||||
|
||||
|
|
Reference in a new issue