_border.sass 361 B

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