From 411d56739d6eb3cb5be7a8d5b951ab750954d387 Mon Sep 17 00:00:00 2001 From: Kalista Payne Date: Fri, 3 Jan 2025 13:58:40 -0600 Subject: [PATCH] fix(privacy): adjust banner width at mobile sizes --- website/client/src/components/static/home.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/website/client/src/components/static/home.vue b/website/client/src/components/static/home.vue index 7a5b01cbc21..f0fbfe776fe 100644 --- a/website/client/src/components/static/home.vue +++ b/website/client/src/components/static/home.vue @@ -443,6 +443,10 @@ background-color: $white; z-index: 1; box-shadow: 0px 3px 6px 0px rgba(26, 24, 29, 0.16), 0px 3px 6px 0px rgba(26, 24, 29, 0.24); + + @media only screen and (max-width: 992px) { + width: calc(100vw - 48px); + } } }