mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
28 lines
476 B
Plaintext
28 lines
476 B
Plaintext
.hairline-common() {
|
|
content: ' ';
|
|
position: absolute;
|
|
pointer-events: none;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.hairline(@border-color: #ebedf0) {
|
|
.hairline-common();
|
|
|
|
top: -50%;
|
|
left: -50%;
|
|
right: -50%;
|
|
bottom: -50%;
|
|
transform: scale(0.5);
|
|
border: 0 solid @border-color;
|
|
}
|
|
|
|
.hairline-bottom(@border-color: #ebedf0, @left: 0) {
|
|
.hairline-common();
|
|
|
|
left: @left;
|
|
right: 0;
|
|
bottom: 0;
|
|
transform: scaleY(0.5);
|
|
border-bottom: 1px solid @border-color;
|
|
}
|