Rev 3967 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
.responsiveNavbar {
display: flex;
flex-direction: column;
gap: 1rem;
position: fixed;
top: 0;
width: 70vw;
height: 100vh;
background: $bg-color;
overflow-y: scroll;
z-index: 1000;
ul {
display: flex;
flex-direction: column;
justify-content: center;
gap: 0.5rem;
a {
color: $font-color;
font-size: 1rem;
&:hover {
font-weight: bold;
}
}
}
}
.backContainer {
width: 100%;
padding: 1rem;
border-bottom: 1px solid $white;
text-align: left;
margin-bottom: 1rem;
transition: all 0.3s ease;
a {
color: $white;
font-size: 1.3rem;
i {
margin-right: 1rem;
}
}
}
.slideIn {
transform: translateX(0);
}
.slideOut {
transform: translateX(-100%);
}