From 15e06b9b2b92e748aa8d4491632bc27a974d4fad Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Thu, 25 May 2023 08:20:03 -0700 Subject: [PATCH] fix(mobile): remove extra 20px of padding --- web/components/ui/Content/Content.module.scss | 12 ++++-------- web/components/ui/Content/MobileContent.tsx | 2 +- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/web/components/ui/Content/Content.module.scss b/web/components/ui/Content/Content.module.scss index 18ca0f394..4dd57f66d 100644 --- a/web/components/ui/Content/Content.module.scss +++ b/web/components/ui/Content/Content.module.scss @@ -25,10 +25,6 @@ } } -.lowerSectionMobileNoTabs { - padding-top: 20px; -} - .topSectionElement { background-color: var(--theme-color-components-video-background); @include screen(tablet) { @@ -112,9 +108,9 @@ bottom: 40px; right: var(--content-padding); font-weight: 600; - font-size: 1em; - z-index: 99; - background-color: var(--theme-color-components-chat-background); - border-width: 0; + font-size: 1em; + z-index: 99; + background-color: var(--theme-color-components-chat-background); + border-width: 0; box-shadow: 0px 1px 3px 1px rgb(0 0 0 / 20%); } diff --git a/web/components/ui/Content/MobileContent.tsx b/web/components/ui/Content/MobileContent.tsx index 851525226..02a3759fa 100644 --- a/web/components/ui/Content/MobileContent.tsx +++ b/web/components/ui/Content/MobileContent.tsx @@ -89,7 +89,7 @@ export const MobileContent: FC = ({ ) : ( -
{aboutTabContent}
+
{aboutTabContent}
)} );