style.module.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .container {
  2. @apply flex h-full w-full relative overflow-y-auto;
  3. }
  4. .container > div {
  5. @apply flex-1 h-full;
  6. }
  7. .leftDiv {
  8. @apply border-r border-gray-100 px-6 py-3 flex flex-col;
  9. }
  10. .rightDiv {
  11. @apply flex flex-col;
  12. }
  13. .titleWrapper {
  14. @apply flex flex-col justify-center gap-1 mb-5;
  15. }
  16. .title {
  17. @apply text-xl font-medium text-gray-900;
  18. }
  19. .desc {
  20. @apply text-sm font-normal text-gray-500;
  21. }
  22. .textarea {
  23. height: 220px;
  24. @apply border-none resize-none font-normal caret-primary-600 text-gray-700 text-sm w-full focus-visible:outline-none placeholder:text-gray-300 placeholder:text-sm placeholder:font-normal !important;
  25. }
  26. .table {
  27. @apply text-[13px] text-gray-500;
  28. }
  29. .table td {
  30. @apply whitespace-nowrap overflow-hidden text-ellipsis;
  31. }
  32. .commonIcon {
  33. @apply w-3.5 h-3.5 inline-block align-middle;
  34. background-repeat: no-repeat;
  35. background-position: center center;
  36. background-size: contain;
  37. }
  38. .app_icon {
  39. background-image: url(./assets/grid.svg);
  40. }
  41. .hit_testing_icon {
  42. background-image: url(../documents/assets/target.svg);
  43. }
  44. .plugin_icon {
  45. background-image: url(./assets/plugin.svg);
  46. }
  47. .wrapper {
  48. @apply relative border border-primary-600 rounded-xl;
  49. }
  50. .cardWrapper {
  51. display: grid;
  52. grid-template-columns: repeat(auto-fill, minmax(284px, auto));
  53. grid-gap: 16px;
  54. grid-auto-rows: 216px;
  55. }
  56. .clockWrapper {
  57. border: 0.5px solid #eaecf5;
  58. @apply rounded-lg w-11 h-11 flex justify-center items-center;
  59. }
  60. .clockIcon {
  61. mask-image: url(./assets/clock.svg);
  62. @apply bg-gray-500;
  63. }