// This is a copy of the entire ~uswds/src/stylesheets/elements/labels.scss file
// so that we can convert the rem values for USWDS v3.

@import '../../override-function';

.usa-label {
    background-color: $color-gray;
    border-radius: $label-border-radius;
    color: $color-white;
    font-size: $h5-font-size;
    margin-right: scale-rem(0.5rem);
    padding: scale-rule(0.1rem 0.7rem);
    text-transform: uppercase;
  
    &:only-of-type {
      margin-right: 0;
    }
  }
  
  .usa-label-big {
    @extend .usa-label;
    font-size: $base-font-size;
    padding-left: scale-rem(0.9rem);
    padding-right: scale-rem(0.9rem);
  }
  