index.module.less 723 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .addImageBtn{
  2. display: flex;
  3. width: 110px;
  4. height: 110px;
  5. justify-content: center;
  6. align-items: center;
  7. border-radius: 10px;
  8. background: white;
  9. }
  10. .imageItem{
  11. .addImageBtn();
  12. position: relative;
  13. overflow: hidden;
  14. }
  15. .media{
  16. display: flex;
  17. width: 110px;
  18. height: 110px;
  19. align-items: center;
  20. justify-items: center;
  21. // line-height: 220px;
  22. font-size: 0;
  23. // vertical-align: middle;
  24. }
  25. .addImageBtnIcon{
  26. width: 20px;
  27. height: 20px;
  28. font-size: 20px;
  29. }
  30. .deleteButton{
  31. position: absolute;
  32. top: 0;
  33. right: 0;
  34. z-index: 1;
  35. width: 32px;
  36. height: 32px;
  37. left: 79px;
  38. border-top-right-radius: 8px;
  39. border-bottom-left-radius: 8px;
  40. padding: 8px;
  41. background-color: rgba(white, .85);
  42. }