51 lines
905 B
SCSS
51 lines
905 B
SCSS
.form-fields-changed {
|
|
.ant-form-item-control {
|
|
.ant-form-item-control-input {
|
|
min-height: unset !important;
|
|
}
|
|
}
|
|
|
|
&__error-list {
|
|
margin: 0;
|
|
padding-left: 18px;
|
|
}
|
|
|
|
&__error-groups {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
&__error-group {
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
&__error-group-title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
&__error-link {
|
|
display: inline;
|
|
padding: 0;
|
|
border: 0;
|
|
background: none;
|
|
color: inherit;
|
|
font: inherit;
|
|
line-height: inherit;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
text-underline-offset: 2px;
|
|
|
|
&:hover {
|
|
color: color-mix(in srgb, var(--ant-color-error) 82%, var(--ant-color-text));
|
|
}
|
|
|
|
&:focus-visible {
|
|
outline: 2px solid color-mix(in srgb, var(--ant-color-error) 32%, transparent);
|
|
outline-offset: 2px;
|
|
border-radius: 4px;
|
|
}
|
|
}
|
|
}
|