Fix min-height on FilterBar

This commit is contained in:
Justin Edmund 2023-02-05 13:32:34 -08:00
parent 0f75acbfd9
commit c9abe7c9e0

View file

@ -14,6 +14,7 @@
top: $unit * 4; top: $unit * 4;
width: 100%; width: 100%;
max-width: 996px; max-width: 996px;
min-height: 80px;
@include breakpoint(tablet) { @include breakpoint(tablet) {
position: static; position: static;
@ -21,6 +22,10 @@
width: 100%; width: 100%;
} }
@include breakpoint(phone) {
min-height: auto;
}
.Filters { .Filters {
display: flex; display: flex;
box-sizing: border-box; box-sizing: border-box;