37 lines
572 B
SCSS
37 lines
572 B
SCSS
#Header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-bottom: $unit;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
|
|
#Right > div {
|
|
display: flex;
|
|
gap: $unit;
|
|
}
|
|
|
|
#DropdownWrapper {
|
|
display: inline-block;
|
|
padding-bottom: $unit;
|
|
|
|
&:hover .Menu,
|
|
.Menu.open {
|
|
display: block;
|
|
}
|
|
|
|
&:hover {
|
|
padding-right: $unit-4x;
|
|
|
|
.Button {
|
|
background: var(--button-bg-hover);
|
|
color: var(--button-text-hover);
|
|
}
|
|
}
|
|
}
|
|
|
|
@include breakpoint(phone) {
|
|
.Button .Text {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|