hg-editor.wxss 681 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* components/hg-editor/hg-editor.wxss */
  2. @import "iconfont.wxss";
  3. .editor-box {
  4. width: 100%;
  5. padding: 0;
  6. box-sizing: border-box;
  7. background-color: #fff;
  8. border:2px solid #f6f6f6;
  9. }
  10. .editor-box-header,
  11. .editor-box-content {
  12. width: 100%;
  13. }
  14. .editor-box-header {
  15. display: flex;
  16. flex-flow: row nowrap;
  17. align-items: center;
  18. justify-content:flex-start;
  19. padding: 20rpx 20rpx;
  20. box-sizing: border-box;
  21. border-bottom: 2rpx solid #f6f6f6;
  22. background-color: #f6f6f6;
  23. }
  24. .editor-box-header>.operate-box {
  25. margin-right: 20rpx;
  26. width: 40rpx;
  27. height: 40rpx;
  28. overflow: hidden;
  29. color:gray;
  30. }
  31. .editor-box-content{
  32. padding:20rpx;
  33. box-sizing: border-box;
  34. }