vant-fork
Version:
Lightweight Mobile UI Components built on Vue
24 lines (19 loc) • 317 B
CSS
@import './common/var.css';
.van-swipe-cell {
overflow: hidden;
position: relative;
&__left,
&__right {
top: 0;
height: 100%;
position: absolute;
}
&__left {
left: 0;
transform: translate3d(-100%, 0, 0);
}
&__right {
right: 0;
transform: translate3d(100%, 0, 0);
}
}