mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
20 lines
468 B
CSS
20 lines
468 B
CSS
$border-poses: top, right, bottom, left;
|
|
|
|
@define-mixin border-retina $poses: $border-poses, $border-retina-color: #e5e5e5 {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
box-sizing: border-box;
|
|
width: 200%;
|
|
height: 200%;
|
|
transform: scale(.5);
|
|
transform-origin: left top;
|
|
-webkit-perspective: 1000;
|
|
-webkit-backface-visibility: hidden;
|
|
pointer-events: none;
|
|
|
|
@each $pos in $poses {
|
|
border-$(pos): 1px solid $border-retina-color;
|
|
}
|
|
} |