scinote-web/app/assets/stylesheets/shared_styles/elements/navigation.scss
2020-03-06 13:51:18 +01:00

37 lines
642 B
SCSS

.sci-secondary-navbar {
display: flex;
height: 100%;
.navbar-link {
@include font-small;
align-items: center;
color: $color-silver-chalice;
cursor: pointer;
display: flex;
height: 100%;
padding: 0 16px;
position: relative;
text-decoration: none;
text-transform: uppercase;
&:hover {
color: $color-volcano;
}
&.active {
color: $color-volcano;
font-weight: bold;
&::before {
background: $brand-primary;
bottom: 0;
content: "";
height: 4px;
left: 0;
position: absolute;
width: 100%;
}
}
}
}