$text-alignment: (left, center, right, inherit, initial);
$vertical-alignment: (baseline, top, middle, bottom, sub, text-top);
$text-weight: (bold, 600, 500, 400, 300, 200, 100, initial);
$white-spaces: (normal, nowrap, break-spaces, pre, pre-line, pre-wrap);


@each $alignment in $text-alignment {
  .nfr-text-#{$alignment} {
    text-align: $alignment;
  }

  .nfr-align-y-#{$alignment} {
    vertical-align: $alignment;
  }
}

@each $weight in $text-weight {
  .nfr-font-weight-#{$weight} {
    font-weight: $weight;
  }
}

@each $white-space in $white-spaces {
  .nfr-white-space-#{$white-space} {
    white-space: $white-space;
  }
}

.nfr-text-line-through {
  text-decoration: line-through;
}

.nfr-text-underline {
  text-decoration: underline;
}

.nfr-cursor-pointer {
  cursor: pointer;
}
