style.module.css 807 B

1234567891011121314151617181920212223242526272829303132333435
  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. .background {
  22. /* background-image: url('assets/bg.png'); */
  23. background-color: rgba(255,255,255,.6);
  24. background-size: cover;
  25. }
  26. /* .completionPic {
  27. background-image: url(~@/app/components/app-sidebar/completion.png)
  28. }
  29. .expertPic {
  30. background-image: url(~@/app/components/app-sidebar/expert.png)
  31. } */