Code owners
Assign users and groups as approvers for specific file changes. Learn more.
navbar.scss 854 B
nav{
margin-top: 1vh;
margin-left: 5vw;
margin-right: 5vw;
align-self: center;
border-radius: .40rem;
border: 1px #d4d4d4 solid;
}
.navbar{
background-color: #e9e9e9 !important;
}
.nav-link{
font-size: 18px;
}
.icons{
flex-direction: row;
img{
width: 40px !important;
}
li{
padding: 0 5px 0 5px;
}
}.icons img:hover{
transform: scale(1.03);
}
.nav-link.active{
border-bottom: 1px solid rgba(0, 0, 0, 0.179);
transition: border-bottom-width 0.1s ease-in-out, border-color 0.1s ease-in-out;
}
.nav-link.active{
border-bottom: 1px solid rgba(0, 0, 0, 0.179);
animation: slide-in 0.4s ease-in-out forwards;
}
@keyframes slide-in {
from {
width: 0;
border-bottom-width: 0;
}
to {
width: 100%;
border-bottom-width: 1px;
}
}