style.module.css 674 B

1234567891011121314151617181920212223242526272829
  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-8 py-[6px] 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. }
  21. /* .completionPic {
  22. background-image: url(~@/app/components/app-sidebar/completion.png)
  23. }
  24. .expertPic {
  25. background-image: url(~@/app/components/app-sidebar/expert.png)
  26. } */