Files
vant/packages/vant-css/src/mixins/hairline.css
T
2018-09-14 15:29:41 +08:00

13 lines
244 B
CSS

@mixin hairline($border-color: #eee) {
content: '';
position: absolute;
top: -50%;
left: -50%;
right: -50%;
bottom: -50%;
transform: scale(0.5);
pointer-events: none;
box-sizing: border-box;
border: 0 solid $border-color;
}