From 0ac34df1e606b138e43bf854c6467f7be305c648 Mon Sep 17 00:00:00 2001 From: Abhishek Gawande Date: Thu, 18 Jan 2024 15:01:37 +0530 Subject: [PATCH 1/3] Set the default iframe background color to white. --- client/styles/components/_preview-frame.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/client/styles/components/_preview-frame.scss b/client/styles/components/_preview-frame.scss index 9de4ec7d8c..f7de6912ca 100644 --- a/client/styles/components/_preview-frame.scss +++ b/client/styles/components/_preview-frame.scss @@ -30,4 +30,5 @@ .preview-frame__content { position: relative; flex: 1 1 0; + background-color: white; } From fcf0a584ff559799f53ad345ae6b3056bf34c614 Mon Sep 17 00:00:00 2001 From: Abhishek Gawande Date: Fri, 19 Jan 2024 23:09:03 +0530 Subject: [PATCH 2/3] Fixed the scrolling problem on the Privacy Policy, Terms of Use, and Code of Conduct pages in mobile view. --- client/components/RootPage.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/RootPage.jsx b/client/components/RootPage.jsx index cece68f39e..469d27111e 100644 --- a/client/components/RootPage.jsx +++ b/client/components/RootPage.jsx @@ -12,7 +12,7 @@ const RootPage = styled.div` @media (max-width: 770px) { height: 100%; - overflow: hidden; + overflow: auto; } `; From b0cda66f853cf9944c93dcd40d68eaefdbb37a06 Mon Sep 17 00:00:00 2001 From: Abhishek Gawande Date: Fri, 19 Jan 2024 23:18:50 +0530 Subject: [PATCH 3/3] Fixed the scrolling problem on the Privacy Policy, Terms of Use, and Code of Conduct pages in mobile view --- client/styles/components/_preview-frame.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/client/styles/components/_preview-frame.scss b/client/styles/components/_preview-frame.scss index f7de6912ca..9de4ec7d8c 100644 --- a/client/styles/components/_preview-frame.scss +++ b/client/styles/components/_preview-frame.scss @@ -30,5 +30,4 @@ .preview-frame__content { position: relative; flex: 1 1 0; - background-color: white; }