From 0facfa5a155cb5f08339d86d7d234d8ea292267c Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Sun, 31 Aug 2025 21:29:37 +0200 Subject: [PATCH] make code a bit smaller --- src/styles/global.scss | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/styles/global.scss b/src/styles/global.scss index 72ee75b..f4a4227 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -5,8 +5,8 @@ } :root { - --ff: 'Jost Variable', sans-serif; - --ff-alt: 'Playfair Display Variable', serif; + --ff: "Jost Variable", sans-serif; + --ff-alt: "Playfair Display Variable", serif; --clr-light: #ffffff; --clr-dark: #010101; --clr-primary: hsl(219, 90%, 80%); @@ -89,6 +89,10 @@ svg { height: auto; } +code { + font-size: 0.75em; +} + pre { padding: 1rem; margin: 1rem 0;