popov.link/_scss/components/_navigation.scss
Valentin Popov 543fb8d259
feat(navbar): Delete a animation in the navigation bar
Signed-off-by: Valentin Popov <info@valentineus.link>
2018-12-16 16:58:47 +04:00

44 lines
522 B
SCSS

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