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

38 lines
661 B
SCSS
Raw Normal View History

2018-03-26 23:32:43 +02:00
.header {
2018-06-25 08:07:45 +02:00
position: fixed;
height: var(--header-height);
width: 100%;
display: flex;
2018-03-26 23:32:43 +02:00
z-index: 1;
justify-content: space-between;
2018-06-25 08:07:45 +02:00
align-items: center;
padding: 0 $spacing-width;
2018-03-26 23:32:43 +02:00
background-color: var(--color-bg);
2018-06-25 08:07:45 +02:00
box-shadow: var(--box-shadow-header);
}
.header__navigation {
display: flex;
justify-content: space-between;
}
.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-03-26 23:32:43 +02:00
.header__actions-right {
margin-left: auto;
display: flex;
2017-04-27 15:17:18 +02:00
2018-03-26 23:32:43 +02:00
.btn {
2018-06-25 08:07:45 +02:00
margin-left: $spacing-width * 1/3;
}
}