Rinze/src/style/components/_menu.scss

39 lines
757 B
SCSS

.menu {
max-height: 0px;
display: block;
@include transition;
overflow: hidden;
margin-left: 4rem;
&.enabled {
max-height: 100vh;
}
&__item {
color: $white;
height: 3rem;
display: flex;
flex-direction: row;
align-items: center;
@include transition;
&:hover {
background-color: $accent-primary;
}
a {
display: flex;
flex-direction: row;
align-items: center;
width: 100%;
height: 100%;
i {
@include px(1rem);
}
p {
display: inline-block;
flex-grow: 1;
}
}
}
}