You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.module.css 633B

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