verben-authentication-ui 0.3.3 → 0.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (292) hide show
  1. package/esm2022/lib/components/button/button.component.mjs +46 -0
  2. package/esm2022/lib/components/button/button.module.mjs +20 -0
  3. package/esm2022/lib/components/forgot-password/ForgotPasswordData.mjs +2 -0
  4. package/esm2022/lib/components/forgot-password/forgot-password.component.mjs +89 -0
  5. package/esm2022/lib/components/forgot-password/forgot-password.module.mjs +34 -0
  6. package/esm2022/lib/components/mail/mail.component.mjs +69 -0
  7. package/esm2022/lib/components/mail/mail.module.mjs +21 -0
  8. package/esm2022/lib/components/mail-validation/mail-validation.component.mjs +108 -0
  9. package/esm2022/lib/components/mail-validation/mail-validation.module.mjs +34 -0
  10. package/esm2022/lib/components/o-auth/o-auth.component.mjs +123 -0
  11. package/esm2022/lib/components/o-auth/o-auth.module.mjs +19 -0
  12. package/esm2022/lib/components/otp-input/otp-input.component.mjs +75 -0
  13. package/esm2022/lib/components/otp-input/otp-input.module.mjs +23 -0
  14. package/esm2022/lib/components/reset-password/ResetPasswordData.mjs +2 -0
  15. package/esm2022/lib/components/reset-password/reset-password.component.mjs +107 -0
  16. package/esm2022/lib/components/reset-password/reset-password.module.mjs +34 -0
  17. package/esm2022/lib/components/sign-in/sign-in.component.mjs +240 -0
  18. package/esm2022/lib/components/sign-in/sign-in.module.mjs +24 -0
  19. package/esm2022/lib/components/sign-up/sign-up.component.mjs +223 -0
  20. package/esm2022/lib/components/sign-up/sign-up.module.mjs +24 -0
  21. package/esm2022/lib/components/sso/base-table-style.mjs +53 -0
  22. package/esm2022/lib/components/sso/helper.mjs +14 -0
  23. package/esm2022/lib/components/sso/sso-form/sso-form.component.mjs +74 -0
  24. package/esm2022/lib/components/sso/sso.columns.mjs +29 -0
  25. package/esm2022/lib/components/sso/sso.component.mjs +236 -0
  26. package/esm2022/lib/components/sso/sso.module.mjs +63 -0
  27. package/esm2022/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.mjs +228 -0
  28. package/esm2022/lib/components/two-factor-auth-otp/two-factor-auth-otp.module.mjs +22 -0
  29. package/esm2022/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.mjs +90 -0
  30. package/esm2022/lib/components/two-factor-auth-setup/two-factor-auth-setup.module.mjs +19 -0
  31. package/esm2022/lib/components/user-management/base-table-style.mjs +53 -0
  32. package/esm2022/lib/components/user-management/helper.mjs +26 -0
  33. package/esm2022/lib/components/user-management/useer-management.module.mjs +68 -0
  34. package/esm2022/lib/components/user-management/user-management-form/use-management-form.component.mjs +57 -0
  35. package/esm2022/lib/components/user-management/user-management.columns.mjs +43 -0
  36. package/esm2022/lib/components/user-management/user-management.component.mjs +323 -0
  37. package/esm2022/lib/components/user-request/user-request.component.mjs +206 -0
  38. package/esm2022/lib/components/user-request/user-request.module.mjs +34 -0
  39. package/esm2022/lib/components/user-request-approval/access-request.columns.mjs +24 -0
  40. package/esm2022/lib/components/user-request-approval/base-table-style.mjs +53 -0
  41. package/esm2022/lib/components/user-request-approval/facades/user-access-request.facade.mjs +128 -0
  42. package/esm2022/lib/components/user-request-approval/helper.mjs +35 -0
  43. package/esm2022/lib/components/user-request-approval/services/user-access-request.service.mjs +72 -0
  44. package/esm2022/lib/components/user-request-approval/states/user-access-request.state.mjs +59 -0
  45. package/esm2022/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.mjs +26 -0
  46. package/esm2022/lib/components/user-request-approval/user-request-approval.component.mjs +251 -0
  47. package/esm2022/lib/components/user-request-approval/user-request-approval.module.mjs +77 -0
  48. package/esm2022/lib/components/user-request-approval/user-request-approval.service.mjs +32 -0
  49. package/esm2022/lib/components/user-request-approval/user-request-form/use-request-form.component.mjs +64 -0
  50. package/esm2022/lib/models/ErrorResponse.mjs +11 -0
  51. package/esm2022/lib/models/PasswordRequestParam.mjs +2 -0
  52. package/esm2022/lib/models/ResponseKeyValue.mjs +2 -0
  53. package/esm2022/lib/models/UserRequest.mjs +2 -0
  54. package/esm2022/lib/models/auth-mechanism.mjs +8 -0
  55. package/esm2022/lib/models/base.mjs +2 -0
  56. package/esm2022/lib/models/log-in.mjs +2 -0
  57. package/esm2022/lib/models/mainUser.mjs +2 -0
  58. package/esm2022/lib/models/object-state.mjs +8 -0
  59. package/esm2022/lib/models/otpValue.mjs +2 -0
  60. package/esm2022/lib/models/paged.mjs +2 -0
  61. package/esm2022/lib/models/query-params.mjs +2 -0
  62. package/esm2022/lib/models/request-status.mjs +5 -0
  63. package/esm2022/lib/models/resend-otp-data.mjs +2 -0
  64. package/esm2022/lib/models/sign-up.mjs +2 -0
  65. package/esm2022/lib/models/single-sign-on.mjs +2 -0
  66. package/esm2022/lib/models/status.mjs +6 -0
  67. package/esm2022/lib/models/user-access-request-status.mjs +7 -0
  68. package/esm2022/lib/models/user-access-request.mjs +2 -0
  69. package/esm2022/lib/models/user.mjs +2 -0
  70. package/esm2022/lib/services/environment.service.mjs +26 -0
  71. package/esm2022/lib/services/http-web-request.service.mjs +82 -0
  72. package/esm2022/lib/services/util.service.mjs +32 -0
  73. package/esm2022/public-api.mjs +43 -0
  74. package/esm2022/verben-authentication-ui.mjs +5 -0
  75. package/fesm2022/verben-authentication-ui.mjs +3702 -0
  76. package/fesm2022/verben-authentication-ui.mjs.map +1 -0
  77. package/index.d.ts +5 -0
  78. package/lib/components/button/button.component.d.ts +17 -0
  79. package/lib/components/button/button.module.d.ts +10 -0
  80. package/{src/lib/components/forgot-password/ForgotPasswordData.ts → lib/components/forgot-password/ForgotPasswordData.d.ts} +1 -1
  81. package/lib/components/forgot-password/forgot-password.component.d.ts +29 -0
  82. package/lib/components/forgot-password/forgot-password.module.d.ts +10 -0
  83. package/lib/components/mail/mail.component.d.ts +32 -0
  84. package/lib/components/mail/mail.module.d.ts +11 -0
  85. package/lib/components/mail-validation/mail-validation.component.d.ts +42 -0
  86. package/lib/components/mail-validation/mail-validation.module.d.ts +10 -0
  87. package/lib/components/o-auth/o-auth.component.d.ts +27 -0
  88. package/lib/components/o-auth/o-auth.module.d.ts +9 -0
  89. package/lib/components/otp-input/otp-input.component.d.ts +20 -0
  90. package/lib/components/otp-input/otp-input.module.d.ts +13 -0
  91. package/lib/components/reset-password/ResetPasswordData.d.ts +5 -0
  92. package/lib/components/reset-password/reset-password.component.d.ts +30 -0
  93. package/lib/components/reset-password/reset-password.module.d.ts +10 -0
  94. package/lib/components/sign-in/sign-in.component.d.ts +81 -0
  95. package/lib/components/sign-in/sign-in.module.d.ts +13 -0
  96. package/lib/components/sign-up/sign-up.component.d.ts +66 -0
  97. package/lib/components/sign-up/sign-up.module.d.ts +13 -0
  98. package/lib/components/sso/base-table-style.d.ts +1 -0
  99. package/lib/components/sso/helper.d.ts +2 -0
  100. package/lib/components/sso/sso-form/sso-form.component.d.ts +21 -0
  101. package/lib/components/sso/sso.columns.d.ts +3 -0
  102. package/lib/components/sso/sso.component.d.ts +54 -0
  103. package/lib/components/sso/sso.module.d.ts +11 -0
  104. package/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.d.ts +67 -0
  105. package/lib/components/two-factor-auth-otp/two-factor-auth-otp.module.d.ts +12 -0
  106. package/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.d.ts +39 -0
  107. package/lib/components/two-factor-auth-setup/two-factor-auth-setup.module.d.ts +9 -0
  108. package/lib/components/user-management/base-table-style.d.ts +1 -0
  109. package/lib/components/user-management/helper.d.ts +2 -0
  110. package/lib/components/user-management/useer-management.module.d.ts +11 -0
  111. package/lib/components/user-management/user-management-form/use-management-form.component.d.ts +20 -0
  112. package/lib/components/user-management/user-management.columns.d.ts +3 -0
  113. package/lib/components/user-management/user-management.component.d.ts +60 -0
  114. package/lib/components/user-request/user-request.component.d.ts +60 -0
  115. package/lib/components/user-request/user-request.module.d.ts +10 -0
  116. package/lib/components/user-request-approval/access-request.columns.d.ts +3 -0
  117. package/lib/components/user-request-approval/base-table-style.d.ts +1 -0
  118. package/lib/components/user-request-approval/facades/user-access-request.facade.d.ts +23 -0
  119. package/lib/components/user-request-approval/helper.d.ts +6 -0
  120. package/lib/components/user-request-approval/services/user-access-request.service.d.ts +50 -0
  121. package/lib/components/user-request-approval/states/user-access-request.state.d.ts +21 -0
  122. package/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.d.ts +12 -0
  123. package/lib/components/user-request-approval/user-request-approval.component.d.ts +59 -0
  124. package/lib/components/user-request-approval/user-request-approval.module.d.ts +12 -0
  125. package/lib/components/user-request-approval/user-request-approval.service.d.ts +18 -0
  126. package/lib/components/user-request-approval/user-request-form/use-request-form.component.d.ts +21 -0
  127. package/lib/models/ErrorResponse.d.ts +6 -0
  128. package/lib/models/PasswordRequestParam.d.ts +5 -0
  129. package/lib/models/ResponseKeyValue.d.ts +5 -0
  130. package/lib/models/UserRequest.d.ts +24 -0
  131. package/lib/models/auth-mechanism.d.ts +13 -0
  132. package/lib/models/base.d.ts +10 -0
  133. package/lib/models/log-in.d.ts +7 -0
  134. package/{src/lib/models/mainUser.ts → lib/models/mainUser.d.ts} +2 -3
  135. package/lib/models/object-state.d.ts +6 -0
  136. package/{src/lib/models/otpValue.ts → lib/models/otpValue.d.ts} +1 -3
  137. package/lib/models/paged.d.ts +9 -0
  138. package/lib/models/query-params.d.ts +7 -0
  139. package/lib/models/request-status.d.ts +3 -0
  140. package/lib/models/resend-otp-data.d.ts +8 -0
  141. package/lib/models/sign-up.d.ts +9 -0
  142. package/lib/models/single-sign-on.d.ts +7 -0
  143. package/lib/models/status.d.ts +4 -0
  144. package/lib/models/user-access-request-status.d.ts +5 -0
  145. package/{src/lib/models/user-access-request.ts → lib/models/user-access-request.d.ts} +3 -4
  146. package/lib/models/user.d.ts +23 -0
  147. package/lib/services/environment.service.d.ts +16 -0
  148. package/lib/services/http-web-request.service.d.ts +23 -0
  149. package/lib/services/util.service.d.ts +8 -0
  150. package/package.json +14 -8
  151. package/{src/public-api.ts → public-api.d.ts} +0 -21
  152. package/ng-package.json +0 -8
  153. package/src/lib/components/button/button.component.css +0 -3
  154. package/src/lib/components/button/button.component.html +0 -13
  155. package/src/lib/components/button/button.component.spec.ts +0 -23
  156. package/src/lib/components/button/button.component.ts +0 -24
  157. package/src/lib/components/button/button.module.ts +0 -11
  158. package/src/lib/components/forgot-password/forgot-password.component.css +0 -29
  159. package/src/lib/components/forgot-password/forgot-password.component.html +0 -13
  160. package/src/lib/components/forgot-password/forgot-password.component.spec.ts +0 -23
  161. package/src/lib/components/forgot-password/forgot-password.component.ts +0 -86
  162. package/src/lib/components/forgot-password/forgot-password.module.ts +0 -18
  163. package/src/lib/components/mail/mail.component.css +0 -0
  164. package/src/lib/components/mail/mail.component.html +0 -11
  165. package/src/lib/components/mail/mail.component.spec.ts +0 -23
  166. package/src/lib/components/mail/mail.component.ts +0 -47
  167. package/src/lib/components/mail/mail.module.ts +0 -13
  168. package/src/lib/components/mail-validation/mail-validation.component.css +0 -59
  169. package/src/lib/components/mail-validation/mail-validation.component.html +0 -37
  170. package/src/lib/components/mail-validation/mail-validation.component.spec.ts +0 -23
  171. package/src/lib/components/mail-validation/mail-validation.component.ts +0 -66
  172. package/src/lib/components/mail-validation/mail-validation.module.ts +0 -18
  173. package/src/lib/components/o-auth/o-auth.component.css +0 -21
  174. package/src/lib/components/o-auth/o-auth.component.html +0 -60
  175. package/src/lib/components/o-auth/o-auth.component.spec.ts +0 -23
  176. package/src/lib/components/o-auth/o-auth.component.ts +0 -43
  177. package/src/lib/components/o-auth/o-auth.module.ts +0 -11
  178. package/src/lib/components/otp-input/otp-input.component.css +0 -19
  179. package/src/lib/components/otp-input/otp-input.component.html +0 -14
  180. package/src/lib/components/otp-input/otp-input.component.spec.ts +0 -23
  181. package/src/lib/components/otp-input/otp-input.component.ts +0 -73
  182. package/src/lib/components/otp-input/otp-input.module.ts +0 -15
  183. package/src/lib/components/reset-password/ResetPasswordData.ts +0 -5
  184. package/src/lib/components/reset-password/reset-password.component.css +0 -29
  185. package/src/lib/components/reset-password/reset-password.component.html +0 -22
  186. package/src/lib/components/reset-password/reset-password.component.spec.ts +0 -23
  187. package/src/lib/components/reset-password/reset-password.component.ts +0 -108
  188. package/src/lib/components/reset-password/reset-password.module.ts +0 -18
  189. package/src/lib/components/sign-in/sign-in.component.css +0 -21
  190. package/src/lib/components/sign-in/sign-in.component.html +0 -84
  191. package/src/lib/components/sign-in/sign-in.component.spec.ts +0 -23
  192. package/src/lib/components/sign-in/sign-in.component.ts +0 -184
  193. package/src/lib/components/sign-in/sign-in.module.ts +0 -17
  194. package/src/lib/components/sign-up/sign-up.component.css +0 -36
  195. package/src/lib/components/sign-up/sign-up.component.html +0 -132
  196. package/src/lib/components/sign-up/sign-up.component.spec.ts +0 -23
  197. package/src/lib/components/sign-up/sign-up.component.ts +0 -176
  198. package/src/lib/components/sign-up/sign-up.module.ts +0 -15
  199. package/src/lib/components/sso/base-table-style.ts +0 -52
  200. package/src/lib/components/sso/helper.ts +0 -15
  201. package/src/lib/components/sso/sso-form/sso-form.component.css +0 -13
  202. package/src/lib/components/sso/sso-form/sso-form.component.html +0 -109
  203. package/src/lib/components/sso/sso-form/sso-form.component.spec.ts +0 -23
  204. package/src/lib/components/sso/sso-form/sso-form.component.ts +0 -70
  205. package/src/lib/components/sso/sso.columns.ts +0 -32
  206. package/src/lib/components/sso/sso.component.css +0 -47
  207. package/src/lib/components/sso/sso.component.html +0 -208
  208. package/src/lib/components/sso/sso.component.spec.ts +0 -23
  209. package/src/lib/components/sso/sso.component.ts +0 -261
  210. package/src/lib/components/sso/sso.module.ts +0 -40
  211. package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.css +0 -8
  212. package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.html +0 -30
  213. package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.spec.ts +0 -23
  214. package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.ts +0 -183
  215. package/src/lib/components/two-factor-auth-otp/two-factor-auth-otp.module.ts +0 -15
  216. package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.css +0 -17
  217. package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.html +0 -45
  218. package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.spec.ts +0 -23
  219. package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.ts +0 -57
  220. package/src/lib/components/two-factor-auth-setup/two-factor-auth-setup.module.ts +0 -11
  221. package/src/lib/components/user-management/base-table-style.ts +0 -52
  222. package/src/lib/components/user-management/helper.ts +0 -29
  223. package/src/lib/components/user-management/index.ts +0 -4
  224. package/src/lib/components/user-management/useer-management.module.ts +0 -48
  225. package/src/lib/components/user-management/user-management-form/use-management-form.component.ts +0 -61
  226. package/src/lib/components/user-management/user-management-form/user-management-form.component.css +0 -0
  227. package/src/lib/components/user-management/user-management-form/user-management-form.component.html +0 -91
  228. package/src/lib/components/user-management/user-management-form/user-management-form.component.spec.ts +0 -23
  229. package/src/lib/components/user-management/user-management.columns.ts +0 -45
  230. package/src/lib/components/user-management/user-management.component.css +0 -26
  231. package/src/lib/components/user-management/user-management.component.html +0 -275
  232. package/src/lib/components/user-management/user-management.component.spec.ts +0 -23
  233. package/src/lib/components/user-management/user-management.component.ts +0 -380
  234. package/src/lib/components/user-management/user-management.service.ts +0 -42
  235. package/src/lib/components/user-request/user-request.component.css +0 -91
  236. package/src/lib/components/user-request/user-request.component.html +0 -165
  237. package/src/lib/components/user-request/user-request.component.spec.ts +0 -23
  238. package/src/lib/components/user-request/user-request.component.ts +0 -167
  239. package/src/lib/components/user-request/user-request.module.ts +0 -18
  240. package/src/lib/components/user-request-approval/access-request.columns.ts +0 -26
  241. package/src/lib/components/user-request-approval/base-table-style.ts +0 -52
  242. package/src/lib/components/user-request-approval/facades/user-access-request.facade.ts +0 -152
  243. package/src/lib/components/user-request-approval/helper.ts +0 -39
  244. package/src/lib/components/user-request-approval/services/user-access-request.service.spec.ts +0 -16
  245. package/src/lib/components/user-request-approval/services/user-access-request.service.ts +0 -87
  246. package/src/lib/components/user-request-approval/states/user-access-request.state.ts +0 -65
  247. package/src/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.css +0 -0
  248. package/src/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.html +0 -7
  249. package/src/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.spec.ts +0 -23
  250. package/src/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.ts +0 -22
  251. package/src/lib/components/user-request-approval/user-request-approval.component.css +0 -1
  252. package/src/lib/components/user-request-approval/user-request-approval.component.html +0 -218
  253. package/src/lib/components/user-request-approval/user-request-approval.component.spec.ts +0 -23
  254. package/src/lib/components/user-request-approval/user-request-approval.component.ts +0 -301
  255. package/src/lib/components/user-request-approval/user-request-approval.module.ts +0 -52
  256. package/src/lib/components/user-request-approval/user-request-approval.service.spec.ts +0 -16
  257. package/src/lib/components/user-request-approval/user-request-approval.service.ts +0 -58
  258. package/src/lib/components/user-request-approval/user-request-form/use-request-form.component.ts +0 -66
  259. package/src/lib/components/user-request-approval/user-request-form/user-request-form.component.css +0 -0
  260. package/src/lib/components/user-request-approval/user-request-form/user-request-form.component.html +0 -97
  261. package/src/lib/components/user-request-approval/user-request-form/user-request-form.component.spec.ts +0 -23
  262. package/src/lib/models/ErrorResponse.ts +0 -7
  263. package/src/lib/models/PasswordRequestParam.ts +0 -5
  264. package/src/lib/models/ResponseKeyValue.ts +0 -5
  265. package/src/lib/models/UserRequest.ts +0 -28
  266. package/src/lib/models/auth-mechanism.ts +0 -14
  267. package/src/lib/models/base.ts +0 -11
  268. package/src/lib/models/log-in.ts +0 -7
  269. package/src/lib/models/object-state.ts +0 -6
  270. package/src/lib/models/paged.ts +0 -9
  271. package/src/lib/models/query-params.ts +0 -7
  272. package/src/lib/models/request-status.ts +0 -4
  273. package/src/lib/models/resend-otp-data.ts +0 -8
  274. package/src/lib/models/resource.ts +0 -27
  275. package/src/lib/models/sign-up.ts +0 -11
  276. package/src/lib/models/single-sign-on.ts +0 -9
  277. package/src/lib/models/status.ts +0 -5
  278. package/src/lib/models/user-access-request-status.ts +0 -5
  279. package/src/lib/models/user.ts +0 -24
  280. package/src/lib/services/environment.service.spec.ts +0 -16
  281. package/src/lib/services/environment.service.ts +0 -23
  282. package/src/lib/services/http-web-request.service.spec.ts +0 -16
  283. package/src/lib/services/http-web-request.service.ts +0 -101
  284. package/src/lib/services/util.service.spec.ts +0 -16
  285. package/src/lib/services/util.service.ts +0 -28
  286. package/src/styles.css +0 -96
  287. package/src/theme/tailwind-setup.css +0 -3
  288. package/src/theme/tailwind.css +0 -980
  289. package/tailwind.config.js +0 -20
  290. package/tsconfig.lib.json +0 -15
  291. package/tsconfig.lib.prod.json +0 -11
  292. package/tsconfig.spec.json +0 -15
@@ -1,980 +0,0 @@
1
- *, ::before, ::after {
2
- --tw-border-spacing-x: 0;
3
- --tw-border-spacing-y: 0;
4
- --tw-translate-x: 0;
5
- --tw-translate-y: 0;
6
- --tw-rotate: 0;
7
- --tw-skew-x: 0;
8
- --tw-skew-y: 0;
9
- --tw-scale-x: 1;
10
- --tw-scale-y: 1;
11
- --tw-pan-x: ;
12
- --tw-pan-y: ;
13
- --tw-pinch-zoom: ;
14
- --tw-scroll-snap-strictness: proximity;
15
- --tw-gradient-from-position: ;
16
- --tw-gradient-via-position: ;
17
- --tw-gradient-to-position: ;
18
- --tw-ordinal: ;
19
- --tw-slashed-zero: ;
20
- --tw-numeric-figure: ;
21
- --tw-numeric-spacing: ;
22
- --tw-numeric-fraction: ;
23
- --tw-ring-inset: ;
24
- --tw-ring-offset-width: 0px;
25
- --tw-ring-offset-color: #fff;
26
- --tw-ring-color: rgb(59 130 246 / 0.5);
27
- --tw-ring-offset-shadow: 0 0 #0000;
28
- --tw-ring-shadow: 0 0 #0000;
29
- --tw-shadow: 0 0 #0000;
30
- --tw-shadow-colored: 0 0 #0000;
31
- --tw-blur: ;
32
- --tw-brightness: ;
33
- --tw-contrast: ;
34
- --tw-grayscale: ;
35
- --tw-hue-rotate: ;
36
- --tw-invert: ;
37
- --tw-saturate: ;
38
- --tw-sepia: ;
39
- --tw-drop-shadow: ;
40
- --tw-backdrop-blur: ;
41
- --tw-backdrop-brightness: ;
42
- --tw-backdrop-contrast: ;
43
- --tw-backdrop-grayscale: ;
44
- --tw-backdrop-hue-rotate: ;
45
- --tw-backdrop-invert: ;
46
- --tw-backdrop-opacity: ;
47
- --tw-backdrop-saturate: ;
48
- --tw-backdrop-sepia: ;
49
- --tw-contain-size: ;
50
- --tw-contain-layout: ;
51
- --tw-contain-paint: ;
52
- --tw-contain-style: ;
53
- }
54
-
55
- ::backdrop {
56
- --tw-border-spacing-x: 0;
57
- --tw-border-spacing-y: 0;
58
- --tw-translate-x: 0;
59
- --tw-translate-y: 0;
60
- --tw-rotate: 0;
61
- --tw-skew-x: 0;
62
- --tw-skew-y: 0;
63
- --tw-scale-x: 1;
64
- --tw-scale-y: 1;
65
- --tw-pan-x: ;
66
- --tw-pan-y: ;
67
- --tw-pinch-zoom: ;
68
- --tw-scroll-snap-strictness: proximity;
69
- --tw-gradient-from-position: ;
70
- --tw-gradient-via-position: ;
71
- --tw-gradient-to-position: ;
72
- --tw-ordinal: ;
73
- --tw-slashed-zero: ;
74
- --tw-numeric-figure: ;
75
- --tw-numeric-spacing: ;
76
- --tw-numeric-fraction: ;
77
- --tw-ring-inset: ;
78
- --tw-ring-offset-width: 0px;
79
- --tw-ring-offset-color: #fff;
80
- --tw-ring-color: rgb(59 130 246 / 0.5);
81
- --tw-ring-offset-shadow: 0 0 #0000;
82
- --tw-ring-shadow: 0 0 #0000;
83
- --tw-shadow: 0 0 #0000;
84
- --tw-shadow-colored: 0 0 #0000;
85
- --tw-blur: ;
86
- --tw-brightness: ;
87
- --tw-contrast: ;
88
- --tw-grayscale: ;
89
- --tw-hue-rotate: ;
90
- --tw-invert: ;
91
- --tw-saturate: ;
92
- --tw-sepia: ;
93
- --tw-drop-shadow: ;
94
- --tw-backdrop-blur: ;
95
- --tw-backdrop-brightness: ;
96
- --tw-backdrop-contrast: ;
97
- --tw-backdrop-grayscale: ;
98
- --tw-backdrop-hue-rotate: ;
99
- --tw-backdrop-invert: ;
100
- --tw-backdrop-opacity: ;
101
- --tw-backdrop-saturate: ;
102
- --tw-backdrop-sepia: ;
103
- --tw-contain-size: ;
104
- --tw-contain-layout: ;
105
- --tw-contain-paint: ;
106
- --tw-contain-style: ;
107
- }
108
-
109
- /*
110
- ! tailwindcss v3.4.15 | MIT License | https://tailwindcss.com
111
- */
112
-
113
- /*
114
- 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
115
- 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
116
- */
117
-
118
- *,
119
- ::before,
120
- ::after {
121
- box-sizing: border-box;
122
- /* 1 */
123
- border-width: 0;
124
- /* 2 */
125
- border-style: solid;
126
- /* 2 */
127
- border-color: currentColor;
128
- /* 2 */
129
- }
130
-
131
- ::before,
132
- ::after {
133
- --tw-content: '';
134
- }
135
-
136
- /*
137
- 1. Use a consistent sensible line-height in all browsers.
138
- 2. Prevent adjustments of font size after orientation changes in iOS.
139
- 3. Use a more readable tab size.
140
- 4. Use the user's configured `sans` font-family by default.
141
- 5. Use the user's configured `sans` font-feature-settings by default.
142
- 6. Use the user's configured `sans` font-variation-settings by default.
143
- 7. Disable tap highlights on iOS
144
- */
145
-
146
- html,
147
- :host {
148
- line-height: 1.5;
149
- /* 1 */
150
- -webkit-text-size-adjust: 100%;
151
- /* 2 */
152
- -moz-tab-size: 4;
153
- /* 3 */
154
- -o-tab-size: 4;
155
- tab-size: 4;
156
- /* 3 */
157
- font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
158
- /* 4 */
159
- font-feature-settings: normal;
160
- /* 5 */
161
- font-variation-settings: normal;
162
- /* 6 */
163
- -webkit-tap-highlight-color: transparent;
164
- /* 7 */
165
- }
166
-
167
- /*
168
- 1. Remove the margin in all browsers.
169
- 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
170
- */
171
-
172
- body {
173
- margin: 0;
174
- /* 1 */
175
- line-height: inherit;
176
- /* 2 */
177
- }
178
-
179
- /*
180
- 1. Add the correct height in Firefox.
181
- 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
182
- 3. Ensure horizontal rules are visible by default.
183
- */
184
-
185
- hr {
186
- height: 0;
187
- /* 1 */
188
- color: inherit;
189
- /* 2 */
190
- border-top-width: 1px;
191
- /* 3 */
192
- }
193
-
194
- /*
195
- Add the correct text decoration in Chrome, Edge, and Safari.
196
- */
197
-
198
- abbr:where([title]) {
199
- -webkit-text-decoration: underline dotted;
200
- text-decoration: underline dotted;
201
- }
202
-
203
- /*
204
- Remove the default font size and weight for headings.
205
- */
206
-
207
- h1,
208
- h2,
209
- h3,
210
- h4,
211
- h5,
212
- h6 {
213
- font-size: inherit;
214
- font-weight: inherit;
215
- }
216
-
217
- /*
218
- Reset links to optimize for opt-in styling instead of opt-out.
219
- */
220
-
221
- a {
222
- color: inherit;
223
- text-decoration: inherit;
224
- }
225
-
226
- /*
227
- Add the correct font weight in Edge and Safari.
228
- */
229
-
230
- b,
231
- strong {
232
- font-weight: bolder;
233
- }
234
-
235
- /*
236
- 1. Use the user's configured `mono` font-family by default.
237
- 2. Use the user's configured `mono` font-feature-settings by default.
238
- 3. Use the user's configured `mono` font-variation-settings by default.
239
- 4. Correct the odd `em` font sizing in all browsers.
240
- */
241
-
242
- code,
243
- kbd,
244
- samp,
245
- pre {
246
- font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
247
- /* 1 */
248
- font-feature-settings: normal;
249
- /* 2 */
250
- font-variation-settings: normal;
251
- /* 3 */
252
- font-size: 1em;
253
- /* 4 */
254
- }
255
-
256
- /*
257
- Add the correct font size in all browsers.
258
- */
259
-
260
- small {
261
- font-size: 80%;
262
- }
263
-
264
- /*
265
- Prevent `sub` and `sup` elements from affecting the line height in all browsers.
266
- */
267
-
268
- sub,
269
- sup {
270
- font-size: 75%;
271
- line-height: 0;
272
- position: relative;
273
- vertical-align: baseline;
274
- }
275
-
276
- sub {
277
- bottom: -0.25em;
278
- }
279
-
280
- sup {
281
- top: -0.5em;
282
- }
283
-
284
- /*
285
- 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
286
- 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
287
- 3. Remove gaps between table borders by default.
288
- */
289
-
290
- table {
291
- text-indent: 0;
292
- /* 1 */
293
- border-color: inherit;
294
- /* 2 */
295
- border-collapse: collapse;
296
- /* 3 */
297
- }
298
-
299
- /*
300
- 1. Change the font styles in all browsers.
301
- 2. Remove the margin in Firefox and Safari.
302
- 3. Remove default padding in all browsers.
303
- */
304
-
305
- button,
306
- input,
307
- optgroup,
308
- select,
309
- textarea {
310
- font-family: inherit;
311
- /* 1 */
312
- font-feature-settings: inherit;
313
- /* 1 */
314
- font-variation-settings: inherit;
315
- /* 1 */
316
- font-size: 100%;
317
- /* 1 */
318
- font-weight: inherit;
319
- /* 1 */
320
- line-height: inherit;
321
- /* 1 */
322
- letter-spacing: inherit;
323
- /* 1 */
324
- color: inherit;
325
- /* 1 */
326
- margin: 0;
327
- /* 2 */
328
- padding: 0;
329
- /* 3 */
330
- }
331
-
332
- /*
333
- Remove the inheritance of text transform in Edge and Firefox.
334
- */
335
-
336
- button,
337
- select {
338
- text-transform: none;
339
- }
340
-
341
- /*
342
- 1. Correct the inability to style clickable types in iOS and Safari.
343
- 2. Remove default button styles.
344
- */
345
-
346
- button,
347
- input:where([type='button']),
348
- input:where([type='reset']),
349
- input:where([type='submit']) {
350
- -webkit-appearance: button;
351
- /* 1 */
352
- background-color: transparent;
353
- /* 2 */
354
- background-image: none;
355
- /* 2 */
356
- }
357
-
358
- /*
359
- Use the modern Firefox focus style for all focusable elements.
360
- */
361
-
362
- :-moz-focusring {
363
- outline: auto;
364
- }
365
-
366
- /*
367
- Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
368
- */
369
-
370
- :-moz-ui-invalid {
371
- box-shadow: none;
372
- }
373
-
374
- /*
375
- Add the correct vertical alignment in Chrome and Firefox.
376
- */
377
-
378
- progress {
379
- vertical-align: baseline;
380
- }
381
-
382
- /*
383
- Correct the cursor style of increment and decrement buttons in Safari.
384
- */
385
-
386
- ::-webkit-inner-spin-button,
387
- ::-webkit-outer-spin-button {
388
- height: auto;
389
- }
390
-
391
- /*
392
- 1. Correct the odd appearance in Chrome and Safari.
393
- 2. Correct the outline style in Safari.
394
- */
395
-
396
- [type='search'] {
397
- -webkit-appearance: textfield;
398
- /* 1 */
399
- outline-offset: -2px;
400
- /* 2 */
401
- }
402
-
403
- /*
404
- Remove the inner padding in Chrome and Safari on macOS.
405
- */
406
-
407
- ::-webkit-search-decoration {
408
- -webkit-appearance: none;
409
- }
410
-
411
- /*
412
- 1. Correct the inability to style clickable types in iOS and Safari.
413
- 2. Change font properties to `inherit` in Safari.
414
- */
415
-
416
- ::-webkit-file-upload-button {
417
- -webkit-appearance: button;
418
- /* 1 */
419
- font: inherit;
420
- /* 2 */
421
- }
422
-
423
- /*
424
- Add the correct display in Chrome and Safari.
425
- */
426
-
427
- summary {
428
- display: list-item;
429
- }
430
-
431
- /*
432
- Removes the default spacing and border for appropriate elements.
433
- */
434
-
435
- blockquote,
436
- dl,
437
- dd,
438
- h1,
439
- h2,
440
- h3,
441
- h4,
442
- h5,
443
- h6,
444
- hr,
445
- figure,
446
- p,
447
- pre {
448
- margin: 0;
449
- }
450
-
451
- fieldset {
452
- margin: 0;
453
- padding: 0;
454
- }
455
-
456
- legend {
457
- padding: 0;
458
- }
459
-
460
- ol,
461
- ul,
462
- menu {
463
- list-style: none;
464
- margin: 0;
465
- padding: 0;
466
- }
467
-
468
- /*
469
- Reset default styling for dialogs.
470
- */
471
-
472
- dialog {
473
- padding: 0;
474
- }
475
-
476
- /*
477
- Prevent resizing textareas horizontally by default.
478
- */
479
-
480
- textarea {
481
- resize: vertical;
482
- }
483
-
484
- /*
485
- 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
486
- 2. Set the default placeholder color to the user's configured gray 400 color.
487
- */
488
-
489
- input::-moz-placeholder, textarea::-moz-placeholder {
490
- opacity: 1;
491
- /* 1 */
492
- color: #9ca3af;
493
- /* 2 */
494
- }
495
-
496
- input::placeholder,
497
- textarea::placeholder {
498
- opacity: 1;
499
- /* 1 */
500
- color: #9ca3af;
501
- /* 2 */
502
- }
503
-
504
- /*
505
- Set the default cursor for buttons.
506
- */
507
-
508
- button,
509
- [role="button"] {
510
- cursor: pointer;
511
- }
512
-
513
- /*
514
- Make sure disabled buttons don't get the pointer cursor.
515
- */
516
-
517
- :disabled {
518
- cursor: default;
519
- }
520
-
521
- /*
522
- 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
523
- 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
524
- This can trigger a poorly considered lint error in some tools but is included by design.
525
- */
526
-
527
- img,
528
- svg,
529
- video,
530
- canvas,
531
- audio,
532
- iframe,
533
- embed,
534
- object {
535
- display: block;
536
- /* 1 */
537
- vertical-align: middle;
538
- /* 2 */
539
- }
540
-
541
- /*
542
- Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
543
- */
544
-
545
- img,
546
- video {
547
- max-width: 100%;
548
- height: auto;
549
- }
550
-
551
- /* Make elements with the HTML hidden attribute stay hidden by default */
552
-
553
- [hidden]:where(:not([hidden="until-found"])) {
554
- display: none;
555
- }
556
-
557
- .visible {
558
- visibility: visible;
559
- }
560
-
561
- .invisible {
562
- visibility: hidden;
563
- }
564
-
565
- .fixed {
566
- position: fixed;
567
- }
568
-
569
- .absolute {
570
- position: absolute;
571
- }
572
-
573
- .relative {
574
- position: relative;
575
- }
576
-
577
- .bottom-8 {
578
- bottom: 2rem;
579
- }
580
-
581
- .left-0 {
582
- left: 0px;
583
- }
584
-
585
- .right-0 {
586
- right: 0px;
587
- }
588
-
589
- .float-right {
590
- float: right;
591
- }
592
-
593
- .m-0 {
594
- margin: 0px;
595
- }
596
-
597
- .my-2 {
598
- margin-top: 0.5rem;
599
- margin-bottom: 0.5rem;
600
- }
601
-
602
- .mb-0 {
603
- margin-bottom: 0px;
604
- }
605
-
606
- .mb-2 {
607
- margin-bottom: 0.5rem;
608
- }
609
-
610
- .mt-1 {
611
- margin-top: 0.25rem;
612
- }
613
-
614
- .mt-2 {
615
- margin-top: 0.5rem;
616
- }
617
-
618
- .mt-3 {
619
- margin-top: 0.75rem;
620
- }
621
-
622
- .mt-4 {
623
- margin-top: 1rem;
624
- }
625
-
626
- .mt-6 {
627
- margin-top: 1.5rem;
628
- }
629
-
630
- .mt-\[8px\] {
631
- margin-top: 8px;
632
- }
633
-
634
- .block {
635
- display: block;
636
- }
637
-
638
- .flex {
639
- display: flex;
640
- }
641
-
642
- .grid {
643
- display: grid;
644
- }
645
-
646
- .hidden {
647
- display: none;
648
- }
649
-
650
- .h-full {
651
- height: 100%;
652
- }
653
-
654
- .w-2 {
655
- width: 0.5rem;
656
- }
657
-
658
- .w-3 {
659
- width: 0.75rem;
660
- }
661
-
662
- .w-full {
663
- width: 100%;
664
- }
665
-
666
- .cursor-not-allowed {
667
- cursor: not-allowed;
668
- }
669
-
670
- .cursor-pointer {
671
- cursor: pointer;
672
- }
673
-
674
- .flex-col {
675
- flex-direction: column;
676
- }
677
-
678
- .items-center {
679
- align-items: center;
680
- }
681
-
682
- .justify-center {
683
- justify-content: center;
684
- }
685
-
686
- .justify-between {
687
- justify-content: space-between;
688
- }
689
-
690
- .gap-1 {
691
- gap: 0.25rem;
692
- }
693
-
694
- .gap-2 {
695
- gap: 0.5rem;
696
- }
697
-
698
- .gap-4 {
699
- gap: 1rem;
700
- }
701
-
702
- .gap-5 {
703
- gap: 1.25rem;
704
- }
705
-
706
- .gap-6 {
707
- gap: 1.5rem;
708
- }
709
-
710
- .gap-y-2 {
711
- row-gap: 0.5rem;
712
- }
713
-
714
- .space-x-8 > :not([hidden]) ~ :not([hidden]) {
715
- --tw-space-x-reverse: 0;
716
- margin-right: calc(2rem * var(--tw-space-x-reverse));
717
- margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
718
- }
719
-
720
- .space-y-1 > :not([hidden]) ~ :not([hidden]) {
721
- --tw-space-y-reverse: 0;
722
- margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
723
- margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
724
- }
725
-
726
- .space-y-4 > :not([hidden]) ~ :not([hidden]) {
727
- --tw-space-y-reverse: 0;
728
- margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
729
- margin-bottom: calc(1rem * var(--tw-space-y-reverse));
730
- }
731
-
732
- .space-y-7 > :not([hidden]) ~ :not([hidden]) {
733
- --tw-space-y-reverse: 0;
734
- margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse)));
735
- margin-bottom: calc(1.75rem * var(--tw-space-y-reverse));
736
- }
737
-
738
- .space-y-8 > :not([hidden]) ~ :not([hidden]) {
739
- --tw-space-y-reverse: 0;
740
- margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
741
- margin-bottom: calc(2rem * var(--tw-space-y-reverse));
742
- }
743
-
744
- .overflow-hidden {
745
- overflow: hidden;
746
- }
747
-
748
- .overflow-y-auto {
749
- overflow-y: auto;
750
- }
751
-
752
- .truncate {
753
- overflow: hidden;
754
- text-overflow: ellipsis;
755
- white-space: nowrap;
756
- }
757
-
758
- .text-wrap {
759
- text-wrap: wrap;
760
- }
761
-
762
- .break-all {
763
- word-break: break-all;
764
- }
765
-
766
- .rounded-\[9px\] {
767
- border-radius: 9px;
768
- }
769
-
770
- .rounded-lg {
771
- border-radius: 0.5rem;
772
- }
773
-
774
- .rounded-md {
775
- border-radius: 0.375rem;
776
- }
777
-
778
- .rounded-xl {
779
- border-radius: 0.75rem;
780
- }
781
-
782
- .rounded-br-none {
783
- border-bottom-right-radius: 0px;
784
- }
785
-
786
- .rounded-tr-none {
787
- border-top-right-radius: 0px;
788
- }
789
-
790
- .border {
791
- border-width: 1px;
792
- }
793
-
794
- .border-\[1px\] {
795
- border-width: 1px;
796
- }
797
-
798
- .border-primary {
799
- --tw-border-opacity: 1;
800
- border-color: rgb(212 160 7 / var(--tw-border-opacity, 1));
801
- }
802
-
803
- .border-secondary-200 {
804
- border-color: rgba(215, 219, 230, 1);
805
- }
806
-
807
- .bg-\[\#CAE1CC\] {
808
- --tw-bg-opacity: 1;
809
- background-color: rgb(202 225 204 / var(--tw-bg-opacity, 1));
810
- }
811
-
812
- .bg-primary {
813
- --tw-bg-opacity: 1;
814
- background-color: rgb(212 160 7 / var(--tw-bg-opacity, 1));
815
- }
816
-
817
- .bg-secondary {
818
- --tw-bg-opacity: 1;
819
- background-color: rgb(232 234 241 / var(--tw-bg-opacity, 1));
820
- }
821
-
822
- .bg-secondary-100 {
823
- --tw-bg-opacity: 1;
824
- background-color: rgb(245 246 249 / var(--tw-bg-opacity, 1));
825
- }
826
-
827
- .bg-secondary-200 {
828
- background-color: rgba(215, 219, 230, 1);
829
- }
830
-
831
- .px-3 {
832
- padding-left: 0.75rem;
833
- padding-right: 0.75rem;
834
- }
835
-
836
- .px-4 {
837
- padding-left: 1rem;
838
- padding-right: 1rem;
839
- }
840
-
841
- .py-2 {
842
- padding-top: 0.5rem;
843
- padding-bottom: 0.5rem;
844
- }
845
-
846
- .py-\[6px\] {
847
- padding-top: 6px;
848
- padding-bottom: 6px;
849
- }
850
-
851
- .pb-2 {
852
- padding-bottom: 0.5rem;
853
- }
854
-
855
- .pb-3 {
856
- padding-bottom: 0.75rem;
857
- }
858
-
859
- .pl-\[13px\] {
860
- padding-left: 13px;
861
- }
862
-
863
- .pr-1 {
864
- padding-right: 0.25rem;
865
- }
866
-
867
- .pr-\[3px\] {
868
- padding-right: 3px;
869
- }
870
-
871
- .text-center {
872
- text-align: center;
873
- }
874
-
875
- .text-\[10px\] {
876
- font-size: 10px;
877
- }
878
-
879
- .text-\[13px\] {
880
- font-size: 13px;
881
- }
882
-
883
- .text-\[16px\] {
884
- font-size: 16px;
885
- }
886
-
887
- .text-\[22px\] {
888
- font-size: 22px;
889
- }
890
-
891
- .text-\[24px\] {
892
- font-size: 24px;
893
- }
894
-
895
- .text-\[2rem\] {
896
- font-size: 2rem;
897
- }
898
-
899
- .text-sm {
900
- font-size: 0.875rem;
901
- line-height: 1.25rem;
902
- }
903
-
904
- .text-xs {
905
- font-size: 0.75rem;
906
- line-height: 1rem;
907
- }
908
-
909
- .font-bold {
910
- font-weight: 700;
911
- }
912
-
913
- .font-light {
914
- font-weight: 300;
915
- }
916
-
917
- .font-medium {
918
- font-weight: 500;
919
- }
920
-
921
- .font-normal {
922
- font-weight: 400;
923
- }
924
-
925
- .font-semibold {
926
- font-weight: 600;
927
- }
928
-
929
- .leading-6 {
930
- line-height: 1.5rem;
931
- }
932
-
933
- .leading-\[29\.05px\] {
934
- line-height: 29.05px;
935
- }
936
-
937
- .leading-\[33px\] {
938
- line-height: 33px;
939
- }
940
-
941
- .leading-\[48px\] {
942
- line-height: 48px;
943
- }
944
-
945
- .text-\[\#333\] {
946
- --tw-text-opacity: 1;
947
- color: rgb(51 51 51 / var(--tw-text-opacity, 1));
948
- }
949
-
950
- .text-\[\#404040\] {
951
- --tw-text-opacity: 1;
952
- color: rgb(64 64 64 / var(--tw-text-opacity, 1));
953
- }
954
-
955
- .text-\[\#4ABB54\] {
956
- --tw-text-opacity: 1;
957
- color: rgb(74 187 84 / var(--tw-text-opacity, 1));
958
- }
959
-
960
- .text-\[black\] {
961
- --tw-text-opacity: 1;
962
- color: rgb(0 0 0 / var(--tw-text-opacity, 1));
963
- }
964
-
965
- .text-muted {
966
- color: rgba(0, 0, 0, 0.6);
967
- }
968
-
969
- .underline {
970
- text-decoration-line: underline;
971
- }
972
-
973
- .outline-none {
974
- outline: 2px solid transparent;
975
- outline-offset: 2px;
976
- }
977
-
978
- .filter {
979
- filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
980
- }