edit.scss 734 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .form-container {
  2. max-height: 70vh;
  3. overflow: auto;
  4. padding-right: 10rpx;
  5. &::-webkit-scrollbar {
  6. width: 6rpx;
  7. }
  8. &::-webkit-scrollbar-track {
  9. background: #f1f1f1;
  10. border-radius: 3rpx;
  11. }
  12. &::-webkit-scrollbar-thumb {
  13. background: #c1c1c1;
  14. border-radius: 3rpx;
  15. }
  16. &::-webkit-scrollbar-thumb:hover {
  17. background: #a1a1a1;
  18. }
  19. }
  20. ::v-deep .u-form {
  21. width: 100%;
  22. .u-form-item {
  23. &.u-form-item-row {
  24. .u-form-item__body {
  25. flex-direction: row !important;
  26. .u-form-item__body__left {
  27. width: auto !important;
  28. }
  29. }
  30. }
  31. }
  32. }