/* ==========================================================================
 * Label - Mixins
 * ========================================================================== */

@define-mixin mds-m-label {
  color: var(--mds-t-text-color--primary);
  display: block;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}

@define-mixin mds-m-label--size-med {
  @mixin mds-m-label;

  font-size: var(--mds-d-font-size--med);
  font-weight: var(--mds-d-font-weight--semibold);
  line-height: var(--mds-d-line-height--med);
}

@define-mixin mds-m-label--size-sm {
  @mixin mds-m-label;

  font-size: var(--mds-d-font-size--sm);
  font-weight: var(--mds-d-font-weight--semibold);
  line-height: var(--mds-d-line-height--sm);
}

@define-mixin mds-m-label--size-xs {
  @mixin mds-m-label;

  font-size: var(--mds-d-font-size--xs);
  font-weight: var(--mds-d-font-weight--semibold);
  line-height: var(--mds-d-line-height--xs);
}
