Skip to content

Commit

Permalink
feat: optimize Divider hairline style
Browse files Browse the repository at this point in the history
  • Loading branch information
ziqisia committed Nov 19, 2024
1 parent ba39cb3 commit 99b1604
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/arcodesign/components/divider/style/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
&--hairline {
&::before,
&::after {
transform: scaleY(0.5);
@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2) {
transform: scaleY(0.5);
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
transform: scaleY(0.33333333);
Expand Down

0 comments on commit 99b1604

Please sign in to comment.