From 68a729ea6462cbfe2b7a1992bcf8ef68cce18c88 Mon Sep 17 00:00:00 2001 From: TJ Egan Date: Tue, 18 Oct 2022 13:04:28 -0400 Subject: [PATCH] fix(switcher): fix app switcher bugs (#3208) --- src/components/Banner/Banner.module.scss | 5 +++++ src/styles/Layout.module.scss | 1 + 2 files changed, 6 insertions(+) diff --git a/src/components/Banner/Banner.module.scss b/src/components/Banner/Banner.module.scss index b03337c721f..1ca00a82e55 100644 --- a/src/components/Banner/Banner.module.scss +++ b/src/components/Banner/Banner.module.scss @@ -5,6 +5,11 @@ top: rem(48px); } +// adjust nav container to account for banner +.banner + header + nav[class*='Switcher-module--nav'] { + top: 6rem; +} + // banner styles .banner { position: fixed; diff --git a/src/styles/Layout.module.scss b/src/styles/Layout.module.scss index e2eef2d9299..668c7bec735 100644 --- a/src/styles/Layout.module.scss +++ b/src/styles/Layout.module.scss @@ -9,6 +9,7 @@ } [class*='Switcher-module--nav'] { top: 3rem; + overflow-y: auto; } [class*='PageTabs-module--tabs-container'] { top: 3rem;