feat(css): Logo font-size fluid via clamp()

This commit is contained in:
2026-06-13 20:20:40 +02:00
parent 47eb475887
commit 5a7d7feace
+1 -1
View File
@@ -467,7 +467,7 @@ html, body {
.logo { .logo {
font-family: var(--font-display); font-family: var(--font-display);
font-size: 17px; font-weight: 700; letter-spacing: 3px; font-size: clamp(0.875rem, 0.8125rem + 0.21vw, 1.0625rem); font-weight: 700; letter-spacing: 3px;
color: var(--accent); color: var(--accent);
text-shadow: 0 0 24px var(--logo-shadow); text-shadow: 0 0 24px var(--logo-shadow);
transition: color 0.5s, text-shadow 0.5s, font-family 0.1s; transition: color 0.5s, text-shadow 0.5s, font-family 0.1s;