mirror of
https://github.com/strapi/strapi.git
synced 2025-08-04 06:49:16 +00:00
31 lines
611 B
SCSS
31 lines
611 B
SCSS
// Import
|
|
@import "../../styles/variables/variables";
|
|
|
|
.leftMenuHeader { /* stylelint-ignore */
|
|
background: $left-menu-link-hover;
|
|
height: $header-height;
|
|
}
|
|
|
|
.projectName {
|
|
display: block;
|
|
height: 100%;
|
|
width: 100%;
|
|
text-align: center;
|
|
line-height: $header-height;
|
|
vertical-align: middle;
|
|
font-size: 2rem;
|
|
letter-spacing: 0.2rem;
|
|
color: $white;
|
|
|
|
// TMP
|
|
background-image: url('../../assets/images/logo-strapi.png');
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: 12rem auto;
|
|
}
|
|
|
|
.leftMenuHeaderLink {
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
} |