index-main/assets/css/components/_swiper.scss
Julie Blanc d51835a2c0
All checks were successful
Deploy / Deploy to Production (push) Successful in 12s
investigation → style siders + titles
2026-02-19 14:35:53 +01:00

52 lines
No EOL
1,014 B
SCSS

.swiper {
.swiper-button-prev,
.swiper-button-next{
color: var(--color-txt);
svg {
width: 20px;
}
}
.swiper-pagination {
position: relative;
margin-top: 0px!important;
margin-top: calc(var(--spacing)*0.5)!important;
.swiper-pagination-bullet {
width: 15px;
height: 4px;
border-radius: 2px;
background: var(--color-txt-light);
}
.swiper-pagination-bullet-active {
background: var(--color-txt);
}
}
.swiper-wrapper {
height: max-content;
align-items: center;
}
.swiper-slide {
height: auto;
display: flex;
align-items: center;
justify-content: center;
}
// @media #{$x-small} {
// .swiper-button-prev,
// .swiper-button-next {
// display: none;
// }
// .swiper-slide {
// padding: 0px;
// }
// }
}