2020-02-21 17:41:42 +08:00
|
|
|
.sci-secondary-navbar {
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
2020-04-02 20:50:48 +08:00
|
|
|
overflow-x: auto;
|
2020-02-21 17:41:42 +08:00
|
|
|
|
2020-02-26 18:07:17 +08:00
|
|
|
.navbar-link {
|
2020-02-21 17:41:42 +08:00
|
|
|
@include font-small;
|
|
|
|
align-items: center;
|
|
|
|
color: $color-silver-chalice;
|
2020-03-06 20:51:18 +08:00
|
|
|
cursor: pointer;
|
2020-02-21 17:41:42 +08:00
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0 16px;
|
|
|
|
position: relative;
|
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
2020-04-02 20:50:48 +08:00
|
|
|
white-space: nowrap;
|
2020-02-21 17:41:42 +08:00
|
|
|
|
|
|
|
&: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%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|