From f838436f525defde2033d275c896027d56c9c730 Mon Sep 17 00:00:00 2001 From: Puyodead1 Date: Thu, 7 Sep 2023 11:38:53 -0400 Subject: [PATCH] make loading page mobile friendly --- src/pages/LoadingPage.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/pages/LoadingPage.tsx b/src/pages/LoadingPage.tsx index 96acfae..60fd613 100644 --- a/src/pages/LoadingPage.tsx +++ b/src/pages/LoadingPage.tsx @@ -15,8 +15,13 @@ const Wrapper = styled.div` `; const SpacebarLogo = styled(SpacebarLogoBlue)` - height: 120px; + width: 80vw; + height: min-content; margin-bottom: 32px; + + @media (min-width: 768px) { + width: 40vw; + } `; function LoadingPage() {