Created
April 8, 2016 14:44
-
-
Save jeppeburchardt/ddb8563a728a266646136487f1676a3d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.hairlines(@border) { | |
border-width: @border; | |
.subpixel-support & { | |
border-width: ~`"@{border}".replace(/1px/g, "0.5px").replace(/[\[\],]/g, '')`; | |
} | |
} | |
.border-a { | |
.hairlines(2px 1px 0px 10px); | |
} | |
.border-b { | |
.hairlines(2px 0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment