cropper.wxss 649 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* templates/cropper/cropper.wxss */
  2. .cropper-container {
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. z-index: 999;
  9. }
  10. .cropper-wrapper{
  11. position: relative;
  12. display: flex;
  13. flex-direction: row;
  14. align-items: center;
  15. justify-content: center;
  16. height: 100%;
  17. background: #e5e5e5;
  18. }
  19. .cropper{
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. }
  24. .cropper-buttons {
  25. display: flex;
  26. align-items: center;
  27. justify-content: space-between;
  28. position: absolute;
  29. bottom: 0;
  30. left: 0;
  31. width: 100%;
  32. background: rgba(0, 0, 0, 0.9);
  33. z-index: 99;
  34. }
  35. .cropper-btn {
  36. padding: 30rpx;
  37. font-size: 36rpx;
  38. color: #fff;
  39. }