Created
March 16, 2017 08:59
-
-
Save devloprs/160b126cd08c00110c472289f76f3ca3 to your computer and use it in GitHub Desktop.
basic circle mixin
This file contains hidden or 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
=circleThing($rad, $height, $width, $bg, $color) | |
-webkit-border-radius: $rad | |
-moz-border-radius: $rad | |
-ms-border-radius: $rad | |
border-radius: $rad | |
height: $height | |
width: $width | |
line-height: $height | |
text-align: center | |
background: $bg | |
color: $color | |
margin: 0 auto |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment