/**
 * @license EUPL-1.2
 * Copyright (c) 2021 Robbert Broersma
 */

@import "../mixin";

@mixin utrecht-html-label {
  label {
    @include utrecht-form-label;
  }

  input[type="checkbox" i] ~ label,
  label:has(input[type="checkbox" i]) {
    @include utrecht-form-label--checkbox;
  }

  input[type="radio" i] ~ label,
  label:has(input[type="radio" i]) {
    @include utrecht-form-label--radio;
  }
}
