Readarr/frontend/src/Components/Page/Header/PageHeader.css
Qstick 0a6f552d5b
New: Cleanup UI tooling, Update to Webpack 4, Gulp 4 (#655)
* New: Webpack 4

* New: Gulp 4

* New: Transpile UI for old browsers

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
2019-03-08 21:10:23 -05:00

65 lines
907 B
CSS

.header {
z-index: 3;
display: flex;
align-items: center;
flex: 0 0 auto;
height: $headerHeight;
background-color: $themeAlternateBlue;
color: $white;
}
.logoContainer {
display: flex;
align-items: center;
flex: 0 0 $sidebarWidth;
padding-left: 20px;
}
.logoLink {
line-height: 0;
}
.logo {
width: 32px;
height: 32px;
}
.sidebarToggleContainer {
display: none;
justify-content: center;
flex: 0 0 45px;
margin-right: 14px;
}
.right {
display: flex;
justify-content: flex-end;
flex-grow: 1;
}
.donate {
composes: link from '~Components/Link/Link.css';
width: 30px;
color: $themeRed;
text-align: center;
line-height: 60px;
&:hover {
color: #9c1f30;
}
}
@media only screen and (max-width: $breakpointSmall) {
.logoContainer {
flex: 0 0 60px;
}
.sidebarToggleContainer {
display: flex;
}
.donate {
display: none;
}
}