mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
29 lines
434 B
SCSS
29 lines
434 B
SCSS
|
.sci-nav-tabs {
|
||
|
border-bottom: $border-default;
|
||
|
display: flex;
|
||
|
|
||
|
a {
|
||
|
color: $color-volcano;
|
||
|
padding: .5em;
|
||
|
position: relative;
|
||
|
|
||
|
&:hover {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
&.active {
|
||
|
color: initial;
|
||
|
|
||
|
&::after {
|
||
|
content: '';
|
||
|
background: $brand-primary;
|
||
|
bottom: 0;
|
||
|
height: .25em;
|
||
|
left: 0;
|
||
|
position:absolute;
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|