Skip to content

Commit

Permalink
fix: "html:not(.legacy) *" -> "body:not(.legacy *)"
Browse files Browse the repository at this point in the history
  • Loading branch information
trisuaso committed Nov 10, 2024
1 parent 1980292 commit 023fa48
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions crates/rainbeam/static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1795,7 +1795,14 @@ table ol {

/* app */
html:not(.legacy),
html:not(.legacy) * {
body:not(.legacy *) {
font-family: "Poppins", "Roboto", "Inter", ui-sans-serif, system-ui,
sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
"Noto Color Emoji";
}

:not(.legacy),
:not(.legacy *) {
--color-surface: hsl(0, 0%, 95%);
--color-lowered: hsl(0, 0%, 93%);
--color-raised: hsl(0, 0%, 98%);
Expand All @@ -1812,9 +1819,6 @@ html:not(.legacy) * {
--color-shadow: transparent;
--frosted-glass: blur(100px) brightness(110%);
--radius: 4px;
font-family: "Poppins", "Roboto", "Inter", ui-sans-serif, system-ui,
sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
"Noto Color Emoji";
}

.dark:not(.legacy),
Expand Down

0 comments on commit 023fa48

Please sign in to comment.