mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
54 lines
817 B
SCSS
54 lines
817 B
SCSS
.navbar {
|
|
position: sticky;
|
|
z-index: 1;
|
|
top: 0px;
|
|
|
|
background-color: white;
|
|
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: solid;
|
|
border-bottom-color: rgba(0, 0, 0, 0.25);
|
|
|
|
box-shadow: 0 1px 4px rgba(0,0,0,0.15), 0 1px 8px rgba(0,0,0,0.15);
|
|
|
|
margin-bottom: 1em;
|
|
|
|
.navbar-brand {
|
|
font-size: 18pt;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.boardsNav {
|
|
.nav-item {
|
|
@extend
|
|
.badge,
|
|
.text-uppercase;
|
|
|
|
font-size: 14px;
|
|
text-align: left;
|
|
}
|
|
|
|
.nav-item.active {
|
|
@extend .badgeLight;
|
|
}
|
|
}
|
|
|
|
.fullname {
|
|
vertical-align: middle;
|
|
|
|
color: black;
|
|
}
|
|
|
|
.dropdown-toggle::after {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.navbar-toggler:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.navbar-toggler[aria-expanded="true"] {
|
|
background-color: $astuto-grey;
|
|
}
|
|
}
|