Vulture/VApp/node_modules/vuetify/lib/styles/tools/_radius.sass

10 lines
307 B
Sass
Raw Normal View History

@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)