From 888f92bf7f7085985bea511fe51d6f01ef8c51ca Mon Sep 17 00:00:00 2001 From: Nonimart Date: Tue, 21 Oct 2025 16:59:29 +0200 Subject: [PATCH] RESPONSIVE Fixing margin and paddings depending on revue or articles and responsive --- .../css/components/article-revues-toolbar.css | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/resources/css/components/article-revues-toolbar.css b/resources/css/components/article-revues-toolbar.css index 6d7b40b..f64c80e 100644 --- a/resources/css/components/article-revues-toolbar.css +++ b/resources/css/components/article-revues-toolbar.css @@ -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; + } +}