33 lines
671 B
SCSS
Raw Normal View History

2016-08-24 15:09:42 +02:00
// Import
@import "../../styles/variables/variables";
.leftMenuHeader { /* stylelint-ignore */
background: $left-menu-link-hover;
height: $header-height;
2017-07-07 15:31:40 +02:00
background: linear-gradient(100deg , #1C5DE7, #1C91E7);
2016-08-24 15:09:42 +02:00
}
.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;
2017-07-07 15:31:40 +02:00
background-size: auto 2.5rem;
2016-08-26 14:45:16 +02:00
}
.leftMenuHeaderLink {
&:hover {
text-decoration: none;
}
2017-07-07 15:31:40 +02:00
}