Skip to content

Commit

Permalink
Fixup the CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
jennybc committed Sep 4, 2024
1 parent 9652f41 commit 05dd7e3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
/*dark*/

.markdown-body {
:root {
--bg-color: #0d1117;
}

body {
color-scheme: dark;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
margin: 0;
color: #e6edf3;
background-color: #0d1117;
background-color: var(--bg-color);
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
font-size: 16px;
line-height: 1.5;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
/*light*/

.markdown-body {
:root {
--bg-color: #ffffff;
}

body {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
margin: 0;
color: #1f2328;
background-color: #ffffff;
background-color: var(--bg-color);
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
font-size: 16px;
line-height: 1.5;
Expand Down

0 comments on commit 05dd7e3

Please sign in to comment.