From c276108078abe2527b611ff86cd0074a2a003964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 22 Feb 2026 11:25:13 +0100 Subject: [PATCH] refactor: convert Koenig editor utilities to ordinary classes in components layer --- assets/css/tailwind.css | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/assets/css/tailwind.css b/assets/css/tailwind.css index 6d9ed1f..208e0ae 100644 --- a/assets/css/tailwind.css +++ b/assets/css/tailwind.css @@ -198,30 +198,30 @@ @apply text-7xl leading-[0.8] mt-2; } } -} -/* Koenig Editor (Ghost) required classes */ -@utility kg-width-wide { - position: relative; - width: 85vw; - left: 50%; - transform: translateX(-50%); - max-width: 1200px; -} + /* Koenig Editor (Ghost) required classes */ + .kg-width-wide { + position: relative; + width: 85vw; + left: 50%; + transform: translateX(-50%); + max-width: 1200px; + } -@utility kg-width-full { - position: relative; - width: 100vw; - left: 50%; - transform: translateX(-50%); -} + .kg-width-full { + position: relative; + width: 100vw; + left: 50%; + transform: translateX(-50%); + } -@utility kg-card { - @apply mb-8; -} + .kg-card { + @apply mb-8; + } -@utility kg-card-caption { - @apply text-center text-sm text-[var(--text-secondary)] mt-2; + .kg-card-caption { + @apply text-center text-sm text-[var(--text-secondary)] mt-2; + } } .site-logo {