summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <vandoorn.nick@gmail.com>2017-07-03 20:58:11 -0700
committerNick Van Doorn <vandoorn.nick@gmail.com>2017-07-03 20:58:11 -0700
commitcca3d4d7086f3480daad6e7f9b29f25b9f06b3c4 (patch)
tree50eed6d55e8adac6d67aa26e2760c55cf928fcdc
parent46f33f8e13361b67de49bf33ba2ef13d985a9f2d (diff)
Set font-size
-rw-r--r--src/index.css7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/index.css b/src/index.css
index bc98e8c..b77aae0 100644
--- a/src/index.css
+++ b/src/index.css
@@ -1,12 +1,17 @@
@import "./globals.css";
-body {
+html, body {
font-family: system-ui;
background: var(--bgColor);
color: var(--fontColor);
+ font-size: var(--baseFontSize);
}
a {
color: var(--fontColor);
text-decoration: none;
}
+
+p {
+ @apply --pSize;
+}