From 99ef685e5e91d2f89927a18eb79c39d2865c51d8 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Wed, 19 Jun 2024 01:30:01 +0400 Subject: [PATCH] Well, still need to detect a browser, at least, just a Firefox, found a way that doesn't trigger on chromium. --- web/assets/css/main.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web/assets/css/main.css b/web/assets/css/main.css index 6bae0d6..22d96c7 100644 --- a/web/assets/css/main.css +++ b/web/assets/css/main.css @@ -85,12 +85,15 @@ header { justify-content: space-between; } header svg text:first-child { - font-size: 3.5rem; + font-size: 3.55rem; font-variant-caps: small-caps; font-weight: bold; } header svg text:last-child { font-size: 1.5rem; } +@supports (-moz-appearance:none) { + header svg text:last-child { transform: scale(.993, 1); } } + header nav { display: flex; flex-direction: column;