mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
29 lines
444 B
CSS
29 lines
444 B
CSS
@component-namespace zan {
|
|
@b image-preview {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
|
|
@e image {
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
transition: .2s ease-out;
|
|
position: absolute;
|
|
left: 0;
|
|
|
|
@m center {
|
|
top: 50%;
|
|
transform: translate3d(0, -50%, 0);
|
|
}
|
|
}
|
|
|
|
.zan-swipe {
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|