From 47db9170901a6a136608eb35303b6f10403088a9 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Thu, 7 Jan 2021 19:24:17 -0800 Subject: [PATCH] Improve text color declaration to inherit from html. --- frontends/etiquette_flask/static/css/common.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontends/etiquette_flask/static/css/common.css b/frontends/etiquette_flask/static/css/common.css index 4912022..bd32129 100644 --- a/frontends/etiquette_flask/static/css/common.css +++ b/frontends/etiquette_flask/static/css/common.css @@ -23,15 +23,15 @@ html { height: 100vh; box-sizing: border-box; + color: var(--color_text_normal); } *, *:before, *:after { box-sizing: inherit; + color: inherit; } -* { color: var(--color_text_normal); } - body { display: grid;