Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CSS Properties #2515

Merged
merged 26 commits into from
Apr 15, 2021
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change --base to --font-size
  • Loading branch information
earlman committed Apr 8, 2021
commit eca35b2371aeafbe74a80355c34f5f720c1e3ac1
4 changes: 2 additions & 2 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
--color-text-dimmed: #666;
--color-text-bright: #fff;
--color-background: black;
--base: 20px;
--font-size: 20px;
--font-primary: "Roboto Condensed";
--font-secondary: "Roboto";
}
Expand All @@ -13,7 +13,7 @@ html {
overflow: hidden;
background: var(--color-background);
user-select: none;
font-size: var(--base);
font-size: var(--font-size);
}

::-webkit-scrollbar {
Expand Down