Skip to content

Commit

Permalink
Move Bgcolor declaration into its own file
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffdaley committed Aug 28, 2023
1 parent 3182efa commit 672243a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 1 addition & 3 deletions web/app/styles/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

@use "./variables";

@use "./body";
@use "./animations";
@use "./typography";

Expand Down Expand Up @@ -77,9 +78,6 @@ body {
line-height: var(--token-typography-body-200-line-height);
color: var(--token-color-foreground-primary);
}
.ember-application {
background-color: var(--token-color-surface-primary);
}

a {
text-decoration: none;
Expand Down
3 changes: 3 additions & 0 deletions web/app/styles/body.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.ember-application {
background-color: var(--token-color-surface-primary);
}

0 comments on commit 672243a

Please sign in to comment.