FEATURE optmizing css behaviour and responsiveness
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Antoine M 2025-09-16 14:07:31 +02:00
parent d6c012a7c8
commit 7b7713c121

View File

@ -9,7 +9,7 @@
} }
.swiper-pagination { .swiper-pagination {
@apply h-fit flex gap-4 lg:gap-12 !static; @apply h-fit flex gap-4 lg:gap-8 2xl:gap-12 !static;
top: unset !important; top: unset !important;
bottom: 0px !important; bottom: 0px !important;
z-index: 100 !important; z-index: 100 !important;
@ -28,15 +28,18 @@
} }
.swiper-controls { .swiper-controls {
@apply flex justify-start gap-6 pt-12 static; @apply flex justify-start gap-6 pt-6 pb-10 static overflow-visible;
.swiper-button-next, .swiper-button-next,
.swiper-button-prev { .swiper-button-prev {
@apply static block border border-primary p-12 rounded-full; @apply static block border border-primary p-12 rounded-full transition-all duration-300;
&:after { &:after {
@apply left-1/2 top-1/2 block w-fit; @apply left-1/2 top-1/2 block w-fit;
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
} }
&:hover {
@apply scale-105;
}
} }
} }
.swiper-wrapper { .swiper-wrapper {