Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | @import "../../styles/colors";
.custom-navbar {
$item-color: $white;
$radius: 6px;
padding: 0.5rem 1.5rem;
background-color: #f3f8f4;
box-shadow: 0 0 20px rgb(14 14 14 / 26%);
transition: background 0.5s;
}
.navbar-toggler {
border: 0;
}
.navbar-nav {
align-items: center;
}
.navbar-brand {
img {
width: auto;
height: 45px;
margin-top: -15px;
margin-bottom: -10px;
}
}
|