You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
442 B
SCSS
23 lines
442 B
SCSS
@import '../common/abstracts/variable';
|
|
@import '../common/abstracts/mixin';
|
|
|
|
@include b(swiper) {
|
|
position: relative;
|
|
@include e(track){
|
|
border-radius: $-swiper-radius;
|
|
overflow: hidden;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
@include e(item){
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
padding: $-swiper-item-padding;
|
|
}
|
|
|
|
@include e(image){
|
|
width: 100%;
|
|
transition: all 0.3s ease;
|
|
}
|
|
} |