FEATURE Optimizing responsive
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Nonimart 2025-09-16 16:15:44 +02:00
parent baa799458b
commit 6119244115

View File

@ -5,11 +5,16 @@
@apply !text-8xl uppercase mb-8 col-span-2; @apply !text-8xl uppercase mb-8 col-span-2;
} }
.author-card__profile-picture {
@apply block static col-span-2 lg:col-span-1;
}
&__header { &__header {
@apply grid grid-cols-2 gap-2 gap-x-8 items-center justify-center py-12; @apply grid grid-cols-1 gap-2 gap-x-8 items-center justify-center py-12;
@screen lg {
grid-template-columns: auto 1fr; grid-template-columns: auto 1fr;
} }
}
&__comities-list { &__comities-list {
@apply flex flex-wrap gap-2 items-center col-span-2 text-primary font-normal pt-4; @apply flex flex-wrap gap-2 items-center col-span-2 text-primary font-normal pt-4;
} }