Skip to content

Commit

Permalink
feat(css): larget font size
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuwn committed Apr 2, 2024
1 parent 1d4ac4b commit d0b7dd9
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions default.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
body {
background-color: var(--bg);
color: var(--fg);
font-family: var(--font-monospace);
font-size: 12px;
line-height: 1rem;
}

:root {
--bg: var(--base00);
--off-bg: var(--base01);
Expand All @@ -18,6 +10,15 @@ body {
--highlight: var(--base0D);
--logo: var(--base0D);
--font-monospace: "Fira Mono", monospace;
--font-size: 13.5px;
}

body {
background-color: var(--bg);
color: var(--fg);
font-family: var(--font-monospace);
font-size: var(--font-size);
line-height: 1rem;
}

h1,
Expand All @@ -26,7 +27,7 @@ h3,
h4,
h5,
h6 {
font-size: 12px;
font-size: var(--font-size);
margin: 1.5rem 0 0 0;
font-weight: 600;
}
Expand Down

0 comments on commit d0b7dd9

Please sign in to comment.