mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
36 lines
642 B
SCSS
36 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%;
|
|
}
|
|
}
|
|
}
|
|
}
|