From fe25798425867c18604e206ba81ac920a2eec219 Mon Sep 17 00:00:00 2001 From: anti Date: Wed, 8 Apr 2026 21:30:30 -0400 Subject: [PATCH] ui: change main dashboard font to Ubuntu Mono --- decnet_web/src/index.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/decnet_web/src/index.css b/decnet_web/src/index.css index ecf0b81..40716fa 100644 --- a/decnet_web/src/index.css +++ b/decnet_web/src/index.css @@ -1,3 +1,5 @@ +@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap'); + :root { --background-color: #000000; --text-color: #00ff41; @@ -15,7 +17,7 @@ } body { - font-family: 'Courier New', Courier, monospace; + font-family: 'Ubuntu Mono', monospace; background-color: var(--background-color); color: var(--text-color); line-height: 1.5;