fixing class causing build problems

This commit is contained in:
Antoine M 2024-05-13 10:57:22 +02:00
parent ab3468b93e
commit 7a86039024

View File

@ -36,8 +36,6 @@
.swiper-button-prev,
.swiper-button-next {
@apply bg-construction p-2 rounded-full w-auto;
// translate: 0 -100%;
aspect-ratio: 1/1;
&:after {
@apply w-8 h-8 block bg-contain bg-no-repeat bg-center;
@ -55,13 +53,17 @@
}
}
.swiper-button-prev {
@apply lg:left-[-140px];
&:after {
transform: rotate(180deg);
}
@screen lg {
left: -140px;
}
}
.swiper-button-next {
@apply lg:right-[-140px];
@screen lg {
right: -140px;
}
}
.swiper-container {
@apply lg:mt-20 xl:mt-32 pb-48 xl:pb-24 w-full mx-auto overflow-visible;