Skip to content

Commit

Permalink
fix: serif font on systems that do not define a system font (#455)
Browse files Browse the repository at this point in the history
  • Loading branch information
FliiFe authored Mar 3, 2021
1 parent aeb9cf6 commit 0f3bc9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/main/css/themes/dark.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
:root {
/* Main fonts and colors */
--main-background-color: rgba(62, 65, 67, 1);
--main-font: system;
--main-font: system, sans-serif;
--main-font-color: white;

/* border styles */
Expand Down
2 changes: 1 addition & 1 deletion app/main/css/themes/light.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
:root {
/* Main fonts and colors */
--main-background-color: rgba(255, 255, 255, 1);
--main-font: system;
--main-font: system, sans-serif;
--main-font-color: #000000;

/* border styles */
Expand Down

0 comments on commit 0f3bc9e

Please sign in to comment.