File size: 493 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
@import "@wordpress/base-styles/mixins";
.swipeable__container {
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
list-style: none;
padding: 0;
touch-action: pan-y;
}
.swipeable__pages {
position: relative;
width: 100%;
height: 100%;
display: flex;
align-items: flex-start;
transition: all 0.5s ease-in-out;
transition-property: transform, height;
@include reduce-motion( "transition" );
}
.swipeable__page {
width: 100%;
flex-shrink: 0;
margin-left: 0;
}
|