style.module.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. .table {
  23. @apply text-[13px] text-gray-500;
  24. }
  25. .table td {
  26. @apply whitespace-nowrap overflow-hidden text-ellipsis;
  27. }
  28. .commonIcon {
  29. @apply w-3.5 h-3.5 inline-block align-middle;
  30. background-repeat: no-repeat;
  31. background-position: center center;
  32. background-size: contain;
  33. }
  34. .app_icon {
  35. background-image: url(./assets/grid.svg);
  36. }
  37. .hit_testing_icon {
  38. background-image: url(../documents/assets/target.svg);
  39. }
  40. .plugin_icon {
  41. background-image: url(./assets/plugin.svg);
  42. }
  43. .wrapper {
  44. @apply relative border border-primary-600 rounded-xl;
  45. }
  46. .cardWrapper {
  47. display: grid;
  48. grid-template-columns: repeat(auto-fill, minmax(284px, auto));
  49. grid-gap: 16px;
  50. grid-auto-rows: 216px;
  51. }
  52. .clockWrapper {
  53. border: 0.5px solid #eaecf5;
  54. @apply rounded-lg w-11 h-11 flex justify-center items-center;
  55. }
  56. .clockIcon {
  57. mask-image: url(./assets/clock.svg);
  58. @apply bg-gray-500;
  59. }