diff options
author | Christian Hesse <mail@eworm.de> | 2023-05-25 09:09:15 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2023-05-25 10:39:16 +0200 |
commit | 5b869d51911d5a42a7a5d903953ebd30c1cd368e (patch) | |
tree | 11f3e7680bee527549395711744f723fb3ab42d1 | |
parent | 871f30ad8eba795c685b42bc7354b908040d1331 (diff) |
contrib/notification: fix the font families
-rw-r--r-- | contrib/notification.d/style.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/notification.d/style.css b/contrib/notification.d/style.css index f4b34df..f9c3404 100644 --- a/contrib/notification.d/style.css +++ b/contrib/notification.d/style.css @@ -1,5 +1,5 @@ body { - font-family: fira-sans, sans; + font-family: fira-sans, sans-serif; font-size: 10pt; background-color: transparent; } @@ -28,13 +28,13 @@ p.hint { display: none; } pre { - font-family: fira-mono, mono; + font-family: fira-mono, monospace; white-space: pre-wrap; } span.link { color: #863600; } span.tag { - font-family: monospace; + font-family: fira-mono, monospace; background-color: #e6e6e6; } |