@use "sb-element/core/theming";
@use "sb-element/core/border";
/*****************************************************************************
Calendar-Dates / Theme
******************************************************************************/

// THEME
@mixin theme($theme) {
  @include theming.for-each-color($theme) using ($color) {
    .sb-calendar-dates {
      &.sb--#{$color} &__week-days {
        @include border.border-side(bottom, $theme, $color, m);
      }
    }
  }
}
