This commit is contained in:
Jordan Vidrine 2024-03-25 15:33:47 -05:00 committed by GitHub
parent 596b28e424
commit 3b02612ad4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 1 deletions

View File

@ -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 {

View File

@ -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,