@use 'sass:map'
@use '../settings'

@mixin shadow($size, $important: false)
  @if ($important == important)
    -webkit-box-shadow: map.get(settings.$shadows, $size) !important
      -moz-box-shadow: map.get(settings.$shadows, $size) !important
            box-shadow: map.get(settings.$shadows, $size) !important
  @else
    -webkit-box-shadow: map.get(settings.$shadows, $size)
      -moz-box-shadow: map.get(settings.$shadows, $size)
            box-shadow: map.get(settings.$shadows, $size)