scinote-web/app/assets/stylesheets/shared_styles/elements/bootstrap_tabs.scss
2020-09-09 12:25:34 +02:00

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%;
}
}
}
}