Skip to content

Commit

Permalink
revert styles set on main back to body
Browse files Browse the repository at this point in the history
  • Loading branch information
vhargrave committed Aug 27, 2024
1 parent a210947 commit 459e593
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions express/styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,16 @@
}
}

body {
background-color: var(--body-background-color);
font-family: var(--body-font-family);
font-size: var(--body-font-size-m);
color: var(--body-color);
overflow-x: clip;
-webkit-font-smoothing: initial;
line-height: initial;
}

body[data-device="mobile"] {
h1, h2, h3, h4, h5, h6 {
hyphens: none;
Expand All @@ -122,14 +132,6 @@ body > header {
}

main {
background-color: var(--body-background-color);
font-family: var(--body-font-family);
font-size: var(--body-font-size-m);
color: var(--body-color);
overflow-x: clip;
-webkit-font-smoothing: initial;
line-height: initial;

a:hover {
text-decoration: none;
}
Expand Down

0 comments on commit 459e593

Please sign in to comment.