_radius.sass 321 B

12345678910
  1. @use 'sass:map'
  2. @use '../settings'
  3. @mixin radius($r, $important: false)
  4. &
  5. // Key exists within the $rounded variable
  6. @if (map.has-key(settings.$rounded, $r))
  7. border-radius: map.get(settings.$rounded, $r) if($important, !important, null)
  8. @else
  9. border-radius: $r if($important, !important, null)