lbry-desktop/src/renderer/scss/component/_header.scss

43 lines
751 B
SCSS
Raw Normal View History

2018-03-26 23:32:43 +02:00
.header {
2018-06-25 08:07:45 +02:00
width: 100%;
2018-10-17 19:14:24 +02:00
height: var(--header-height);
align-items: center;
background-color: $lbry-white;
box-shadow: 0 1px 5px rgba($lbry-black, 0.1);
display: flex;
2018-03-26 23:32:43 +02:00
justify-content: space-between;
padding: 0 $spacing-width * 1/3;
2018-10-17 19:14:24 +02:00
position: fixed;
z-index: 1;
@media (min-width: $medium-breakpoint) {
padding: 0 $spacing-width;
}
2018-06-25 08:07:45 +02:00
}
2018-10-17 19:14:24 +02:00
.header__actions-right {
2018-06-25 08:07:45 +02:00
display: flex;
2018-10-17 19:14:24 +02:00
margin-left: auto;
.btn {
margin-left: $spacing-width * 1/3;
}
2018-06-25 08:07:45 +02:00
}
.header__history {
display: flex;
padding: 0 $spacing-width * 1/2;
@media only screen and (min-width: $medium-breakpoint) {
.btn {
padding: 0 $spacing-width * 1/6;
}
}
}
2018-10-17 19:14:24 +02:00
.header__navigation {
2018-03-26 23:32:43 +02:00
display: flex;
2018-10-17 19:14:24 +02:00
justify-content: space-between;
}