| @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; | |
| } | |