summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2022-09-23 13:58:50 +0200
committerPierre Ossman <ossman@cendio.se>2022-09-23 13:58:50 +0200
commit1a101443a75df64bf7e87ee3ab6a06c459a3df94 (patch)
treeeec9f70edfb40eee606877af3ac1cb5aa8dbc34d
parentaf10b0c5e45315d0bea84f8678d34d750cafd334 (diff)
downloadnovnc-1a101443a75df64bf7e87ee3ab6a06c459a3df94.tar.gz
Set font family on root element
This is a very global setting, so let's put it on the top node for clarity.
-rw-r--r--app/styles/base.css5
1 files changed, 4 insertions, 1 deletions
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;