Skip to content

Instantly share code, notes, and snippets.

@amitabhaghosh197
Last active September 8, 2017 06:51
Show Gist options
  • Save amitabhaghosh197/0b1f7b678c37baa1d587de99df959eb9 to your computer and use it in GitHub Desktop.
Save amitabhaghosh197/0b1f7b678c37baa1d587de99df959eb9 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com. #sass
// ----
// 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 ;
}
.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