52 lines
No EOL
1,014 B
SCSS
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;
|
|
// }
|
|
// }
|
|
} |