Last active
September 8, 2017 06:51
-
-
Save amitabhaghosh197/0b1f7b678c37baa1d587de99df959eb9 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com. #sass
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
// ---- | |
// Sass (v3.4.21) | |
// Compass (v1.0.3) | |
// ---- | |
$bordergrey : #000; | |
@mixin border( $property, $border-width, $color:false){ | |
@if $color == true{ | |
#{$property}: $border-width solid $bordergrey; | |
} | |
@else { | |
#{$property}: $border-width solid transparent; | |
} | |
} | |
.border{ | |
@include border( border-bottom, 1px , true); | |
background:$bordergrey ; | |
} |
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
.border { | |
border-bottom: 1px solid #000; | |
background: #000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment