_border.sass 351 B

123456789
  1. @mixin border($color: null, $style: null, $width: null, $thin-width: false, $important: false)
  2. border-color: $color if($important, !important, null)
  3. border-style: $style if($important, !important, null)
  4. border-width: $width if($important, !important, null)
  5. @if $thin-width
  6. &--border
  7. border-width: $thin-width
  8. box-shadow: none