refactor: convert Koenig editor utilities to ordinary classes in components layer
All checks were successful
Deploy Theme / deploy (push) Successful in 14s

This commit is contained in:
2026-02-22 11:25:13 +01:00
parent e9dfc46b0f
commit c276108078

View File

@@ -198,10 +198,9 @@
@apply text-7xl leading-[0.8] mt-2; @apply text-7xl leading-[0.8] mt-2;
} }
} }
}
/* Koenig Editor (Ghost) required classes */ /* Koenig Editor (Ghost) required classes */
@utility kg-width-wide { .kg-width-wide {
position: relative; position: relative;
width: 85vw; width: 85vw;
left: 50%; left: 50%;
@@ -209,20 +208,21 @@
max-width: 1200px; max-width: 1200px;
} }
@utility kg-width-full { .kg-width-full {
position: relative; position: relative;
width: 100vw; width: 100vw;
left: 50%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
} }
@utility kg-card { .kg-card {
@apply mb-8; @apply mb-8;
} }
@utility kg-card-caption { .kg-card-caption {
@apply text-center text-sm text-[var(--text-secondary)] mt-2; @apply text-center text-sm text-[var(--text-secondary)] mt-2;
} }
}
.site-logo { .site-logo {
@apply transition-all duration-300; @apply transition-all duration-300;