Skip to content

Commit

Permalink
using font from the rest of the page for input
Browse files Browse the repository at this point in the history
  • Loading branch information
catdad committed Jan 28, 2024
1 parent 2abd1b6 commit abe6c45
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
--LIGHT-lvl2: var(--lightest);
--LIGHT-foreground: var(--darkest);
--LIGHT-background: var(--light);

--font: "Noto Sans", sans-serif;
}

body {
Expand All @@ -34,11 +36,15 @@ html, body {
padding: 0;
background: var(--background);

font-family: "Noto Sans", sans-serif;
font-family: var(--font);
color: var(--foreground);
line-height: 1.2;
}

input {
font-family: var(--font);
}

* {
box-sizing: border-box;
}
Expand Down

0 comments on commit abe6c45

Please sign in to comment.