_text.scss 699 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // Grayscale Text Utilities
  2. .text-xs {
  3. font-size: .7rem;
  4. }
  5. .text-lg {
  6. font-size: 1.2rem;
  7. }
  8. .text-gray-100 {
  9. color: $gray-100 !important;
  10. }
  11. .text-gray-200 {
  12. color: $gray-200 !important;
  13. }
  14. .text-gray-300 {
  15. color: $gray-300 !important;
  16. }
  17. .text-gray-400 {
  18. color: $gray-400 !important;
  19. }
  20. .text-gray-500 {
  21. color: $gray-500 !important;
  22. }
  23. .text-gray-600 {
  24. color: $gray-600 !important;
  25. }
  26. .text-gray-700 {
  27. color: $gray-700 !important;
  28. }
  29. .text-gray-800 {
  30. color: $gray-800 !important;
  31. }
  32. .text-gray-900 {
  33. color: $gray-900 !important;
  34. }
  35. .icon-circle {
  36. height: 2.5rem;
  37. width: 2.5rem;
  38. border-radius: 100%;
  39. display: flex;
  40. align-items: center;
  41. justify-content: center;
  42. }