mirror of
https://github.com/strapi/strapi.git
synced 2025-08-07 00:09:23 +00:00
32 lines
476 B
SCSS
32 lines
476 B
SCSS
// Import
|
|
@import "../../styles/variables/variables";
|
|
|
|
.leftMenuLink { /* stylelint-ignore */
|
|
padding-top: 0.5rem;
|
|
padding-bottom: 0.2rem;
|
|
min-height: 3rem;
|
|
cursor: pointer;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.link {
|
|
color: $left-menu-link-color;
|
|
padding-left: 5.8rem;
|
|
text-decoration: none;
|
|
display: block;
|
|
|
|
&:hover {
|
|
color: $white;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.linkActive {
|
|
color: $white;
|
|
}
|
|
|
|
.linkLabel {
|
|
display: inline-block;
|
|
padding-right: 1rem;
|
|
}
|