RESPONSIVE Fixing margin and paddings depending on revue or articles and responsive
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Nonimart 2025-10-21 16:59:29 +02:00
parent 6e65e5a093
commit 888f92bf7f

View File

@ -1,13 +1,9 @@
#revue-toolbar,
#article-toolbar {
@apply col-span-2 container mx-auto;
@media screen and (max-width: 1024px) {
@apply mb-16;
}
@apply col-span-2 container mx-auto mb-2 lg:mb-0;
.tablist {
@apply flex items-center overflow-y-visible gap-8 lg:gap-12 border-b border-primary;
@apply flex items-center overflow-y-visible gap-8 lg:gap-12 border-b border-primary;
position: relative;
@media screen and (max-width: 1024px) {
@ -158,3 +154,9 @@ body:has(
}
}
}
#article-toolbar {
@media screen and (max-width: 1024px) {
@apply mb-16;
}
}