From 8ae1115ba712209cb6b974e81a3a4c4745e36c94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Herg=C3=A8s?= Date: Sat, 6 Sep 2025 22:40:59 +0200 Subject: feat(config): customize font file path, extension and name --- scss/main.scss | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'scss/main.scss') diff --git a/scss/main.scss b/scss/main.scss index e3f1307..c877867 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -5,16 +5,12 @@ :root { --text-color: #000; font-size: 18px; -} - -@font-face { - font-family: "custom"; - src: url("/static/font.woff2"); + --fonts: Raveo, Inter, Roboto; // default fonts } body { --background-image: ; - font-family: "custom", Raveo, Inter, Roboto, sans-serif; + font-family: var(--fonts), sans-serif; background: #000; background-size: cover; color: var(--text-color); -- cgit v1.2.3