_radius.sass 307 B

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