12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* templates/cropper/cropper.wxss */
- .cropper-container {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 999;
- }
- .cropper-wrapper{
- position: relative;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- height: 100%;
- background: #e5e5e5;
- }
- .cropper{
- position: absolute;
- top: 0;
- left: 0;
- }
- .cropper-buttons {
- display: flex;
- align-items: center;
- justify-content: space-between;
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- background: rgba(0, 0, 0, 0.9);
- z-index: 99;
- }
- .cropper-btn {
- padding: 30rpx;
- font-size: 36rpx;
- color: #fff;
- }
|