Skip to content

Commit

Permalink
fix: cant filter on mobile (#1643) (#1642)
Browse files Browse the repository at this point in the history
* fix: testing support

* fix: testing support

* fix: new var

* fix: try support toggle

* fix: try support toggle 2

* fix: try support toggle 2

* fix: try support toggle 2
  • Loading branch information
emilyjablonski authored Oct 31, 2023
1 parent a5de9b2 commit 7c0ca1c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion sites/public/styles/overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,17 @@

.drawer {
--content-padding: 0;
--content-height: 100%;
@supports (height: 100dvh) {
height: 100dvh;
}

@supports not (height: 100dvh) {
.drawer__body {
@media (max-width: $screen-sm) {
padding-bottom: var(--bloom-s32);
}
}
}
}

.page-header {
Expand Down

0 comments on commit 7c0ca1c

Please sign in to comment.