Generated by SassMeister.com.
.border {
border-bottom: 1px solid #000;
background: #000;
}
// ----
// 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 ;
}