pl-fe: add support for missing text size

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2025-10-20 23:35:35 +02:00
parent cc6c4132a6
commit b144fb98d4

View File

@ -7,7 +7,10 @@
@warn "Unknown font family `#{$family}`.";
}
@if $size == sm {
@if $size == xs {
font-size: 0.75rem;
line-height: 1rem;
} @else if $size == sm {
font-size: 0.875rem;
line-height: 1.25rem;
} @else if $size == md {
@ -35,7 +38,7 @@
@if $theme == default {
@apply text-gray-900 dark:text-gray-100;
} @else if $theme == danger {
@apply text-danger-600;
@apply text-danger-600;bg-gradient-sm
} @else if $theme == primary {
@apply text-primary-600 dark:text-accent-blue;
} @else if $theme == muted {