style.module.css 488 B

123456789101112131415161718192021
  1. .commonIcon {
  2. @apply w-4 h-4 inline-block align-middle;
  3. background-repeat: no-repeat;
  4. background-position: center center;
  5. background-size: contain;
  6. }
  7. .actionIcon {
  8. @apply bg-gray-500;
  9. mask-image: url(~@/assets/action.svg);
  10. }
  11. .actionItem {
  12. @apply h-9 py-2 px-3 mx-1 flex items-center gap-2 hover:bg-gray-100 rounded-lg cursor-pointer;
  13. width: calc(100% - 0.5rem);
  14. }
  15. .deleteActionItem {
  16. @apply hover:bg-red-50 !important;
  17. }
  18. .actionName {
  19. @apply text-gray-700 text-sm;
  20. }