popov.link/_scss/components/_navigation.scss
Valentin Popov 0645f56405
fix(navbar): Correct the look of navigation links
Signed-off-by: Valentin Popov <info@valentineus.link>
2018-12-16 17:23:50 +04:00

37 lines
446 B
SCSS

.nav-pills {
list-style-type: none;
margin: 0;
overflow: hidden;
padding: 0;
text-align: center;
li {
float: left;
padding: .5em;
}
}
.nav-link {
text-align: center;
text-decoration: none;
text-transform: uppercase;
&:active,
&:focus,
&:hover {
border: 0;
text-decoration: none;
}
}
.nav-right {
float: right;
}
@media (max-width: 382px) {
.nav-right,
.nav-pills li {
float: none;
}
}