index.less 852 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .form-drawing-container{
  2. position: relative;
  3. box-sizing: border-box;
  4. height: calc(100% - 45px);
  5. padding: 10px;
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. overflow: auto;
  10. overflow-x: hidden;
  11. .empty-form--text{ // 无组件时
  12. }
  13. // 表单画布
  14. .form-drawing{
  15. // pc端
  16. &--pc{
  17. width: 100%;
  18. height: 100%;
  19. }
  20. // 移动端
  21. &--mobile{
  22. width: 375px;
  23. height: 667px;
  24. .form-content{
  25. border-radius: 8px; // 移动端 圆角
  26. }
  27. }
  28. // 画布下cip-form的宽度
  29. .cip-form{
  30. height: 100%;
  31. }
  32. }
  33. // 表单内容容器(公共)
  34. .form-content__wrapper{
  35. width: 100%;
  36. box-sizing: border-box;
  37. min-height: 100%;
  38. border: 1px dashed #333;
  39. background: #fff;
  40. .el-form-item__content{
  41. margin: 0 !important;
  42. }
  43. }
  44. }