Merge pull request #237 from jedmund/staging

Add min-height on FilterBar
This commit is contained in:
Justin Edmund 2023-02-05 13:33:46 -08:00 committed by GitHub
commit a6cbbd3d77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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