37 lines
465 B
SCSS
37 lines
465 B
SCSS
.Header {
|
|
display: flex;
|
|
height: 34px;
|
|
width: 100%;
|
|
|
|
&.bottom {
|
|
position: sticky;
|
|
bottom: $unit * 2;
|
|
}
|
|
|
|
#right > div {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
.dropdown {
|
|
display: inline-block;
|
|
position: relative;
|
|
|
|
&:hover {
|
|
padding-right: 50px;
|
|
padding-bottom: 16px;
|
|
|
|
.Button {
|
|
background: $grey-100;
|
|
}
|
|
|
|
.Menu {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|
|
.push {
|
|
margin-left: auto;
|
|
}
|
|
}
|