feat(app): add variable value for mono font

This commit is contained in:
Ilia Mashkov
2026-02-18 17:34:47 +03:00
parent b8d019b824
commit 5867028be6

View File

@@ -57,6 +57,8 @@
--gradient-from: oklch(0.98 0.002 286.32); --gradient-from: oklch(0.98 0.002 286.32);
--gradient-via: oklch(1 0 0); --gradient-via: oklch(1 0 0);
--gradient-to: oklch(0.98 0.002 286.32); --gradient-to: oklch(0.98 0.002 286.32);
--font-mono: 'Major Mono Display';
} }
.dark { .dark {
@@ -165,6 +167,7 @@
--color-gradient-from: var(--gradient-from); --color-gradient-from: var(--gradient-from);
--color-gradient-via: var(--gradient-via); --color-gradient-via: var(--gradient-via);
--color-gradient-to: var(--gradient-to); --color-gradient-to: var(--gradient-to);
--font-mono: var(--font-mono);
} }
@layer base { @layer base {
@@ -287,7 +290,7 @@
} }
/* ---- Behavior ---- */ /* ---- Behavior ---- */
html { * {
scroll-behavior: smooth; scroll-behavior: smooth;
scrollbar-gutter: stable; scrollbar-gutter: stable;
} }
@@ -300,4 +303,4 @@ html {
body { body {
overscroll-behavior-y: none; overscroll-behavior-y: none;
} }