31 lines
601 B
SCSS
31 lines
601 B
SCSS
.admin-menu {
|
|
li {
|
|
@extend %larger;
|
|
@extend %title;
|
|
border-bottom: 1px solid $gray-light;
|
|
text-transform: uppercase;
|
|
&:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
a {
|
|
display: block;
|
|
padding: 1rem 0 1rem 1rem;
|
|
&:hover {
|
|
.icon {
|
|
opacity: 1;
|
|
transition: opacity .3s linear;
|
|
}
|
|
}
|
|
}
|
|
.active {
|
|
opacity: 1;
|
|
transition: opacity .3s linear;
|
|
}
|
|
.icon {
|
|
color: $blackish;
|
|
float: right;
|
|
opacity: 0;
|
|
}
|
|
}
|