24 lines
322 B
CSS
24 lines
322 B
CSS
.simple-swiper {
|
|
width: 100%;
|
|
/* height: 100%; */
|
|
overflow: visible;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.swiper-wrapper {
|
|
height: auto;
|
|
}
|
|
|
|
.swiper-pagination-fraction {
|
|
@apply text-xl w-auto;
|
|
}
|
|
|
|
.swiper-pagination-current {
|
|
@apply text-text-light;
|
|
}
|
|
|
|
.swiper-button-disabled {
|
|
@apply opacity-0;
|
|
}
|