Unverified Commit 39579802 authored by Marcos Iglesias's avatar Marcos Iglesias Committed by GitHub

Aligns text elements on the navigation bar (#442)

* Aligns text elements on the navigation bar

* Moving variable to common variables file

* Moving variable to an already created group
parent ce3e4c89
...@@ -91,6 +91,7 @@ $nav-bar-color: $indigo100; ...@@ -91,6 +91,7 @@ $nav-bar-color: $indigo100;
$nav-bar-height: 60px; $nav-bar-height: 60px;
$body-min-width: 1048px; $body-min-width: 1048px;
$footer-height: 60px; $footer-height: 60px;
$navbar-item-line-height: 36px;
// SearchPanel // SearchPanel
$search-panel-width: 270px; $search-panel-width: 270px;
......
...@@ -10,19 +10,22 @@ ...@@ -10,19 +10,22 @@
.nav-bar-left { .nav-bar-left {
flex-basis: 234px; flex-basis: 234px;
span.title-3 { span.title-3 {
color: $white; color: $white;
line-height: $navbar-item-line-height;
} }
} }
.nav-bar-right { .nav-bar-right {
margin-left: auto; margin-left: auto;
display: flex; display: flex;
a { a {
color: $white; color: $white;
display: inline-block; display: inline-block;
height: 100%; height: 100%;
line-height: 32px; line-height: $navbar-item-line-height;
padding: 0 8px; padding: 0 8px;
&.border-bottom-white:hover, &.border-bottom-white:hover,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment