| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- .error-tips {
- height: 14px;
- margin: 4px 0 8px;
- font-size: 14px;
- color: var(--error-color);
- }
- .error-tips-hidden {
- visibility: hidden;
- }
- .text-right {
- display: block;
- height: 32px;
- line-height: 2.2;
- color: #666;
- text-align: right;
- }
- .field-required {
- &::before {
- padding-right: 4px;
- color: #f20c00;
- content: '*';
- }
- }
- .filed-width {
- width: 260px;
- }
- .area-filed {
- width: 100%;
- resize: none !important;
- }
- .modal-field {
- padding-right: 0;
- padding-left: 0;
- border: none;
- border-bottom: 1px solid #e4e4e4;
- border-radius: unset;
- box-shadow: unset !important;
- }
- .modal-select {
- & :global(.ant-select-selector) {
- padding: 0 !important;
- border: unset !important;
- border-bottom: 1px solid #e4e4e4 !important;
- border-radius: unset;
- box-shadow: unset !important;
- }
- }
|