| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- .form-container {
- max-height: 70vh;
- overflow: auto;
- padding-right: 10rpx;
-
- &::-webkit-scrollbar {
- width: 6rpx;
- }
-
- &::-webkit-scrollbar-track {
- background: #f1f1f1;
- border-radius: 3rpx;
- }
-
- &::-webkit-scrollbar-thumb {
- background: #c1c1c1;
- border-radius: 3rpx;
- }
-
- &::-webkit-scrollbar-thumb:hover {
- background: #a1a1a1;
- }
- }
- ::v-deep .u-form {
- width: 100%;
- .u-form-item {
- &.u-form-item-row {
- .u-form-item__body {
- flex-direction: row !important;
- .u-form-item__body__left {
- width: auto !important;
- }
- }
- }
- }
- }
|