mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 05:05:55 +08:00
28 lines
434 B
SCSS
28 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%;
|
|
}
|
|
}
|
|
}
|
|
}
|