2018-07-30 20:12:52 +08:00

41 lines
580 B
Plaintext

@import "../mixins/border-retina.pcss";
.van-hairline--top,
.van-hairline--left,
.van-hairline--right,
.van-hairline--bottom,
.van-hairline--top-bottom,
.van-hairline--surround {
position: relative;
&::after {
@mixin hairline;
}
}
.van-hairline {
&--top::after {
border-top-width: 1px;
}
z
&--left::after {
border-left-width: 1px;
}
&--right::after {
border-right-width: 1px;
}
&--bottom::after {
border-bottom-width: 1px;
}
&--top-bottom::after {
border-width: 1px 0;
}
&--surround::after {
border-width: 1px;
}
}