1234567891011121314151617181920212223242526272829303132333435 |
- .jldbq-form {
- display: flex;
- flex-direction: column;
- }
- .jldbq-form label {
- margin-bottom: 30px;
- display: flex;
- align-items: center;
- }
- .jldbq-form label:last-child {
- margin-bottom: 0;
- }
- .jldbq-form label.jldbq-form-error:last-child {
- border: 1px solid #ed5555;
- }
- .jldbq-form .jldbq-form-label {
- color: #4a4a4a;
- width: 75px;
- text-align: end;
- }
- .jldbq-form .jldbq-form-input,
- .jldbq-form .jldbq-form-select {
- font-family: inherit;
- box-sizing: border-box;
- width: 320px;
- height: 32px;
- border-radius: 2px;
- margin-left: 15px;
- font-size: 12px;
- }
|