From 69d7cde42af80455b3652651f1d2b007dffdf790 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Sat, 1 Jun 2024 14:37:06 +0300 Subject: [PATCH] main.scss: add font-variant-emoji: text It's behind a flag in at least Firefox and Safari, but I am currently using a selector anyway --- assets/main.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/assets/main.scss b/assets/main.scss index df155b7..bb790af 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -21,11 +21,13 @@ $monospace-font-family: ui-monospace, "Liberation Mono", Cousine, "Courier New", color-scheme: light dark !important; } -// Revert to defaults +// Revert to defaults, or make settings default * { color: revert !important; overflow-wrap: break-word !important; hyphens: auto !important; + // Experimental trick to make all emojis text if supported. + font-variant-emoji: text; } a {