mirror of
https://github.com/strapi/strapi.git
synced 2025-08-09 17:26:11 +00:00

git-subtree-dir: packages/strapi-plugin-settings-manager git-subtree-mainline: 80aa83d8460c95366547e143c74bf79ea6ae69f8 git-subtree-split: cd241c14c6a6239bca279e7accd709ba58e87cc8
44 lines
765 B
SCSS
44 lines
765 B
SCSS
/* Import */
|
|
@import '../../styles/variables/variables';
|
|
|
|
.leftMenuLink { /* stylelint-disable */
|
|
margin-bottom: .4rem;
|
|
}
|
|
|
|
.leftMenuLinkDestination {
|
|
display: block;
|
|
position: relative;
|
|
color: #3B3F49;
|
|
padding-left: 2rem;
|
|
padding-right: 2rem;
|
|
line-height: 3.6rem;
|
|
font-size: 1.4rem;
|
|
border-radius: 2rem;
|
|
|
|
&:hover {
|
|
color: white;
|
|
text-decoration: none;
|
|
background-color: $strapi-blue;
|
|
}
|
|
}
|
|
|
|
.leftMenuLinkDestinationActive {
|
|
color: white;
|
|
text-decoration: none;
|
|
background-color: #1C5DE7;
|
|
}
|
|
|
|
.leftMenuLinkDestinationActive .leftMenuLinkIcon {
|
|
display: block;
|
|
}
|
|
|
|
.leftMenuLinkIcon {
|
|
display: none;
|
|
float: right;
|
|
padding-top: 1.1rem;
|
|
z-index: 10;
|
|
}
|
|
|
|
.leftMenuLinkDestination:hover .leftMenuLinkIcon {
|
|
display: block;
|
|
} |