From 7c0ca1cc4c90489dc44e3f52c5f23a51519d132a Mon Sep 17 00:00:00 2001 From: Emily Jablonski <65367387+emilyjablonski@users.noreply.github.com> Date: Tue, 31 Oct 2023 13:28:59 -0600 Subject: [PATCH] fix: cant filter on mobile (#1643) (#1642) * 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 --- sites/public/styles/overrides.scss | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/sites/public/styles/overrides.scss b/sites/public/styles/overrides.scss index d8229aec99..523fdfce03 100644 --- a/sites/public/styles/overrides.scss +++ b/sites/public/styles/overrides.scss @@ -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 {