mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
24 lines
387 B
SCSS
24 lines
387 B
SCSS
@import '../utils/base';
|
|
|
|
.main-header.main-header {
|
|
color: white;
|
|
background-color: var(--brand-color) !important;
|
|
|
|
.navbar-brand {
|
|
color: inherit !important;
|
|
}
|
|
}
|
|
|
|
.main-header__brand-logo {
|
|
width: 26px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.main-header__toggle-icon {
|
|
width: 20px;
|
|
transition: transform 300ms;
|
|
}
|
|
|
|
.main-header__toggle-icon--opened {
|
|
transform: rotate(180deg);
|
|
}
|