edit.wxss 676 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* pages/edit/edit.wxss */
  2. .edit-container {
  3. padding:20px 20px;
  4. justify-content:flex-start;
  5. -webkit-justify-content:flex-start
  6. }
  7. .edit_textarea {
  8. max-height:400rpx;
  9. width:100%;
  10. box-sizing:border-box;
  11. font-size:36rpx;
  12. line-height:50rpx;
  13. }
  14. .tips-wrapper {
  15. width:100%;
  16. display:flex;
  17. display: -webkit-flex;
  18. justify-content:space-between;
  19. -webkit-justify-content: spacce-between;
  20. padding: 0 25rpx 0 0;
  21. box-sizing: border-box;
  22. align-items: center;
  23. -webkit-align-items: center;
  24. }
  25. .edit-tips {
  26. font-size:30rpx;
  27. color:#B2B2B2;
  28. line-height: 50rpx;
  29. }
  30. .img-delete-all {
  31. height:30rpx;
  32. width:28rpx;
  33. }
  34. .delete-content {
  35. padding:20rpx 20rpx;
  36. }