2016-08-24 15:09:42 +02:00
|
|
|
// Import
|
|
|
|
@import "../../styles/variables/variables";
|
|
|
|
|
|
|
|
.leftMenuHeader { /* stylelint-ignore */
|
|
|
|
background: $left-menu-link-hover;
|
|
|
|
height: $header-height;
|
|
|
|
}
|
|
|
|
|
|
|
|
.projectName {
|
|
|
|
display: block;
|
2016-09-09 11:21:54 +02:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2016-08-24 15:09:42 +02:00
|
|
|
text-align: center;
|
|
|
|
line-height: $header-height;
|
|
|
|
vertical-align: middle;
|
|
|
|
font-size: 2rem;
|
|
|
|
letter-spacing: 0.2rem;
|
|
|
|
color: $white;
|
2016-09-09 11:21:54 +02:00
|
|
|
|
|
|
|
// TMP
|
2016-10-13 19:31:29 +02:00
|
|
|
background-image: url('../../assets/images/logo-strapi.png');
|
2016-09-09 11:21:54 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center center;
|
|
|
|
background-size: 12rem auto;
|
2016-08-26 14:45:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.leftMenuHeaderLink {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2016-08-24 15:09:42 +02:00
|
|
|
}
|