From f7976389fc8450844527c0a6547ddd0e8080323a Mon Sep 17 00:00:00 2001 From: Josh Reini <60949774+joshreini1@users.noreply.github.com> Date: Wed, 8 Nov 2023 11:51:35 -0500 Subject: [PATCH] fix nav background color on mobile (MLNN-1095) (#547) * fix nav background color on mobile * changes from garett's review --- docs/stylesheets/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/stylesheets/style.css b/docs/stylesheets/style.css index 287c1050d..b5d378632 100644 --- a/docs/stylesheets/style.css +++ b/docs/stylesheets/style.css @@ -635,7 +635,8 @@ p { position: fixed; top: calc(calc(var(--gap-lg) * 2 + 32px) + 0.5rem); left: 0; - width: 100vw; + width: 100%; + height: min-content; background-color: var(--color-navigation); box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08); list-style-type: none;