get-border()

@function get-border(
  $width: 'border-width',
  $style: solid,
  $color: 'border-color'
) {
  @return #{get-var($width)} #{$style} #{color($color)};
}

Last updated