_text.scss 241 B

123456789101112131415161718192021
  1. .text-bold {
  2. &, &.table td, &.table th {
  3. font-weight: 700;
  4. }
  5. }
  6. .text-sm {
  7. font-size: $font-size-sm;
  8. }
  9. .text-xs {
  10. font-size: $font-size-base;
  11. }
  12. .text-lg {
  13. font-size: $font-size-lg;
  14. }
  15. .text-xl {
  16. font-size: $font-size-xl;
  17. }