utilities.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. :root {
  2. interpolate-size: allow-keywords;
  3. [data-popper-positioner] {
  4. pointer-events: none;
  5. }
  6. /* ::selection { */
  7. /* background-color: color-mix(in srgb, var(--color-primary) 33%, transparent); */
  8. /* background-color: var(--color-primary); */
  9. /* color: var(--color-background); */
  10. /* } */
  11. }
  12. .no-scrollbar {
  13. &::-webkit-scrollbar {
  14. display: none;
  15. }
  16. /* Hide scrollbar for IE, Edge and Firefox */
  17. & {
  18. -ms-overflow-style: none; /* IE and Edge */
  19. scrollbar-width: none; /* Firefox */
  20. }
  21. }
  22. .sr-only {
  23. position: absolute;
  24. width: 1px;
  25. height: 1px;
  26. padding: 0;
  27. margin: -1px;
  28. overflow: hidden;
  29. clip: rect(0, 0, 0, 0);
  30. white-space: nowrap;
  31. border-width: 0;
  32. }
  33. .truncate-start {
  34. text-overflow: ellipsis;
  35. overflow: hidden;
  36. white-space: nowrap;
  37. direction: rtl;
  38. text-align: left;
  39. }
  40. .text-12-regular {
  41. font-family: var(--font-family-sans);
  42. font-size: var(--font-size-small);
  43. font-style: normal;
  44. font-weight: var(--font-weight-regular);
  45. line-height: var(--line-height-large); /* 166.667% */
  46. letter-spacing: var(--letter-spacing-normal);
  47. }
  48. .text-12-medium {
  49. font-family: var(--font-family-sans);
  50. font-size: var(--font-size-small);
  51. font-style: normal;
  52. font-weight: var(--font-weight-medium);
  53. line-height: var(--line-height-large); /* 166.667% */
  54. letter-spacing: var(--letter-spacing-normal);
  55. }
  56. .text-12-mono {
  57. font-family: var(--font-family-mono);
  58. font-feature-settings: var(--font-feature-settings-mono);
  59. font-size: var(--font-size-small);
  60. font-style: normal;
  61. font-weight: var(--font-weight-regular);
  62. line-height: var(--line-height-large); /* 166.667% */
  63. letter-spacing: var(--letter-spacing-normal);
  64. }
  65. .text-14-regular {
  66. font-family: var(--font-family-sans);
  67. font-size: var(--font-size-base);
  68. font-style: normal;
  69. font-weight: var(--font-weight-regular);
  70. line-height: var(--line-height-x-large); /* 171.429% */
  71. letter-spacing: var(--letter-spacing-normal);
  72. }
  73. .text-14-medium {
  74. font-family: var(--font-family-sans);
  75. font-size: var(--font-size-base);
  76. font-style: normal;
  77. font-weight: var(--font-weight-medium);
  78. line-height: var(--line-height-large); /* 171.429% */
  79. letter-spacing: var(--letter-spacing-normal);
  80. }
  81. .text-14-mono {
  82. font-family: var(--font-family-mono);
  83. font-feature-settings: var(--font-feature-settings-mono);
  84. font-size: var(--font-size-base);
  85. font-style: normal;
  86. font-weight: var(--font-weight-regular);
  87. line-height: var(--line-height-large); /* 171.429% */
  88. letter-spacing: var(--letter-spacing-normal);
  89. }
  90. .text-16-medium {
  91. font-family: var(--font-family-sans);
  92. font-size: var(--font-size-large);
  93. font-style: normal;
  94. font-weight: var(--font-weight-medium);
  95. line-height: var(--line-height-x-large); /* 150% */
  96. letter-spacing: var(--letter-spacing-tight);
  97. }
  98. .text-20-medium {
  99. font-family: var(--font-family-sans);
  100. font-size: var(--font-size-x-large);
  101. font-style: normal;
  102. font-weight: var(--font-weight-medium);
  103. line-height: var(--line-height-x-large); /* 120% */
  104. letter-spacing: var(--letter-spacing-tightest);
  105. }