Skip to content
This repository has been archived by the owner on Apr 18, 2021. It is now read-only.

Commit

Permalink
style: Fix CSS indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanvanburen committed May 2, 2020
1 parent d47237f commit 6107cf3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions assets/style.css
@@ -1,20 +1,20 @@
@import "node_modules/tachyons/css/tachyons.css";

:root {
--background-color: white;
--text-color: black;
--background-color: white;
--text-color: black;
}

body {
background-color: var(--background-color);
color: var(--text-color);
background-color: var(--background-color);
color: var(--text-color);
}

@media (prefers-color-scheme: dark) {
:root {
--background-color: rgb(17, 17, 17);
--text-color: rgb(170, 170, 170);
}
:root {
--background-color: rgb(17, 17, 17);
--text-color: rgb(170, 170, 170);
}
}

pre {
Expand Down

0 comments on commit 6107cf3

Please sign in to comment.