From 7e3c20e4d37d0dd7fd3b14b3a2b4df61bbcd2119 Mon Sep 17 00:00:00 2001 From: Emily Jablonski <65367387+emilyjablonski@users.noreply.github.com> Date: Mon, 30 Oct 2023 09:00:00 -0600 Subject: [PATCH] fix: cant filter on mobile (#1643) --- 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 {