@use 'sass:map';

@use "@angular/material" as mat;
@use '../global/index' as global;
@use '../themes/index' as themes;

@mixin override-color($theme) {
  // Do nothing.
}

@mixin override-theme($theme) {
  $color-config: mat.get-color-config($theme);
  @if $color-config != null {
    @include override-color($theme);
  }

  .mat-mdc-radio-button {
    &.no-labels {
      /* TODO(mdc-migration): The following rule targets internal classes of radio that may no longer apply for the MDC version.*/
      .mat-mdc-radio-label-content {
        padding-left: 0;
      }
    }
  }
}
