hensei-web/components/Header/index.scss
Justin Edmund 0b0af6f4cd Move TopHeader to Header
This is a remnant of an old design where there was a BottomHeader as well
2022-12-27 17:07:58 -08:00

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;
}
}
}