From a75ea68044f08e620ecca0197c1ca7416fb2250b Mon Sep 17 00:00:00 2001 From: Daniel Stock Date: Fri, 21 Nov 2025 08:37:06 +0100 Subject: [PATCH] fix missing font-size variable --- resources/css/app.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/resources/css/app.css b/resources/css/app.css index 451e92b..3560778 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -71,12 +71,12 @@ @theme inline { /* https://typescale.com/ /* /* Major Third */ - --text-5xl: 3.815rem; - --text-4xl: 3.052rem; - --text-3xl: 2.441rem; - --text-2xl: 1.953rem; - --text-xl: 1.563rem; - --text-lg: 1.25rem; + --text-4xl: 3.815rem; + --text-3xl: 3.052rem; + --text-2xl: 2.441rem; + --text-xl: 1.953rem; + --text-lg: 1.563rem; + --text-md: 1.25rem; --text-base: 1rem; --text-sm: 0.8rem; --text-xs: 0.64rem; @@ -244,6 +244,6 @@ @layer utilities { /* Backdrop */ [data-slot=dialog-overlay] { - backdrop-filter: blur(var(--blur-sm)); + backdrop-filter: blur(2px); } } \ No newline at end of file