All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.lib.styles.tools._radius.sass Maven / Gradle / Ivy

@use 'sass:map'
@use '../settings'

@mixin radius($r, $important: false)
  // Key exists within the $rounded variable
  @if (map.has-key(settings.$rounded, $r))
    border-radius: map.get(settings.$rounded, $r) if($important, !important, null)
  @else
    border-radius: $r if($important, !important, null)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy