index-main/assets/css/components/_swiper.scss

77 lines
1.5 KiB
SCSS
Raw Normal View History

2026-01-29 20:57:17 +01:00
.swiper {
2026-01-27 23:52:25 +01:00
--slide-padding: 30px;
2026-01-27 21:28:14 +01:00
.swiper-button-prev,
2026-01-27 23:52:25 +01:00
.swiper-button-next {
2026-01-27 21:28:14 +01:00
--swiper-navigation-size: 32px;
color: var(--color-txt);
background-color: var(--color-bg);
height: 100%;
2026-01-27 23:52:25 +01:00
width: var(--slide-padding);
2026-01-30 12:27:44 +01:00
top: 0px!important;
height: calc(100% - var(--spacing)*1);
2026-01-27 23:52:25 +01:00
// background-color: red;
2026-01-27 21:28:14 +01:00
2026-01-27 23:52:25 +01:00
svg {
2026-01-27 21:28:14 +01:00
width: 14px;
}
&.swiper-button-disabled {
opacity: 1;
2026-01-27 23:52:25 +01:00
svg {
2026-01-27 21:28:14 +01:00
opacity: 0.05;
}
}
}
2026-01-27 23:52:25 +01:00
.swiper-button-prev {
2026-01-30 12:27:44 +01:00
left: 0px!important;
2026-01-27 21:28:14 +01:00
top: 0px;
2026-01-27 23:52:25 +01:00
justify-content: flex-start;
2026-01-27 21:28:14 +01:00
}
2026-01-27 23:52:25 +01:00
.swiper-button-next {
2026-01-30 12:27:44 +01:00
right: 0px!important;
2026-01-27 21:28:14 +01:00
top: 0px;
2026-01-27 23:52:25 +01:00
justify-content: flex-end;
2026-01-29 20:57:17 +01:00
2026-01-27 21:28:14 +01:00
}
2026-01-27 19:58:53 +01:00
2026-01-27 23:52:25 +01:00
.swiper-slide {
padding-left: var(--slide-padding);
padding-right: var(--slide-padding);
2026-01-27 19:58:53 +01:00
}
2026-01-27 23:52:25 +01:00
.swiper-pagination {
2026-01-27 19:58:53 +01:00
position: relative;
2026-01-30 12:27:44 +01:00
margin-top: 0px!important;
margin-top: calc(var(--spacing)*0.5)!important;
2026-01-27 19:58:53 +01:00
2026-01-27 23:52:25 +01:00
.swiper-pagination-bullet {
2026-01-27 19:58:53 +01:00
width: 15px;
height: 4px;
border-radius: 2px;
background: var(--color-txt-light);
}
2026-01-27 23:52:25 +01:00
.swiper-pagination-bullet-active {
2026-01-27 19:58:53 +01:00
background: var(--color-txt);
}
}
2026-01-27 23:52:25 +01:00
@media #{$x-small} {
.swiper-button-prev,
.swiper-button-next {
display: none;
}
.swiper-slide {
padding: 0px;
}
}
2026-01-27 19:58:53 +01:00
}