global.less 435 B

12345678910111213141516171819202122232425
  1. .myUpload {
  2. position: relative;
  3. .ant-upload-list-picture-card-container,
  4. .ant-upload.ant-upload-select-picture-card {
  5. width: 24px;
  6. height: 24px;
  7. margin: 0;
  8. }
  9. .look {
  10. position: absolute;
  11. left: 100px;
  12. bottom: 5px;
  13. opacity: 0;
  14. transition: all .5s;
  15. a {
  16. font-size: 12px;
  17. }
  18. }
  19. &:hover .look{
  20. opacity: 1;
  21. }
  22. }