mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-05-04 14:56:34 +08:00
30 lines
404 B
CSS
30 lines
404 B
CSS
@import './common/var.css';
|
|
|
|
.van-cell-swipe {
|
|
overflow: hidden;
|
|
position: relative;
|
|
|
|
&__wrapper,
|
|
&__left,
|
|
&__right {
|
|
transition: transform .15s ease-in-out;
|
|
}
|
|
|
|
&__left,
|
|
&__right {
|
|
top: 0;
|
|
height: 100%;
|
|
position: absolute;
|
|
}
|
|
|
|
&__left {
|
|
left: 0;
|
|
transform: translate3d(-100%, 0, 0);
|
|
}
|
|
|
|
&__right {
|
|
right: 0;
|
|
transform: translate3d(100%, 0, 0);
|
|
}
|
|
}
|