From 3b02612ad41204d723d543a9a0e070c879ec04e0 Mon Sep 17 00:00:00 2001 From: Jordan Vidrine <30537603+jordanvidrine@users.noreply.github.com> Date: Mon, 25 Mar 2024 15:33:47 -0500 Subject: [PATCH] fix (#45) --- common/common.scss | 5 ++++- mobile/mobile.scss | 6 ++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/common/common.scss b/common/common.scss index d6355c1..593c59e 100644 --- a/common/common.scss +++ b/common/common.scss @@ -247,7 +247,7 @@ div.ac-wrap { } html { - body { + body:not(.no-ember) { background: linear-gradient( 0deg, rgba(var(--primary-rgb), 0.075) 0%, @@ -268,6 +268,9 @@ html { ); clip-path: ellipse(148% 70% at 91% -14%); } + body.no-ember .background-container { + display: none; + } } html body #main-outlet { diff --git a/mobile/mobile.scss b/mobile/mobile.scss index b21b122..be8d0db 100644 --- a/mobile/mobile.scss +++ b/mobile/mobile.scss @@ -19,7 +19,13 @@ html background-color: transparent; } +html body #main-outlet .docs { + padding: 1em; + background-color: var(--secondary); +} + html body.static-tos #main-outlet, +html body.no-ember #main-outlet, html body.static-privacy #main-outlet, html body.about-page #main-outlet, html body.static-faq #main-outlet,