shlink-web-client/src/common/MainHeader.scss

25 lines
379 B
SCSS
Raw Normal View History

@import '../utils/base';
2018-05-13 10:48:21 +03:00
.main-header.main-header {
2018-06-03 13:57:03 +03:00
background-color: $mainColor !important;
color: white;
2018-05-13 10:48:21 +03:00
2018-06-03 13:57:03 +03:00
.navbar-brand {
color: inherit !important;
}
2018-05-13 10:48:21 +03:00
}
.main-header__brand-logo {
2018-06-03 13:57:03 +03:00
width: 26px;
margin-right: 5px;
2018-05-13 10:48:21 +03:00
}
.main-header__toggle-icon {
width: 20px;
transition: transform 300ms;
}
2018-08-25 16:59:51 +03:00
.main-header__toggle-icon--opened {
transform: rotate(180deg);
}