mirror of
https://github.com/youzan/vant.git
synced 2026-03-06 02:06:58 +08:00
25 lines
411 B
CSS
25 lines
411 B
CSS
@component-namespace zan {
|
|
@b swipe {
|
|
position: relative;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
}
|
|
|
|
@b swipe-item {
|
|
display: none;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
&:first-child {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|