From 1a101443a75df64bf7e87ee3ab6a06c459a3df94 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Fri, 23 Sep 2022 13:58:50 +0200 Subject: Set font family on root element This is a very global setting, so let's put it on the top node for clarity. --- app/styles/base.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/styles/base.css b/app/styles/base.css index aaf2472..c9fde7a 100644 --- a/app/styles/base.css +++ b/app/styles/base.css @@ -31,10 +31,13 @@ * noVNC_disconnecting: Disconnecting from server */ +:root { + font-family: Helvetica; +} + body { margin:0; padding:0; - font-family: Helvetica; /*Background image with light grey curve.*/ background-color:#494949; background-repeat:no-repeat; -- cgit v1.2.1