From d9bad4006c2983ff5d6b278bcbb3eff854e9ae97 Mon Sep 17 00:00:00 2001 From: emilyjablonski Date: Tue, 17 Oct 2023 09:16:10 -0600 Subject: [PATCH] fix: cant filter on mobile --- 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 {