25 lines
446 B
SCSS
25 lines
446 B
SCSS
.required-label::after {
|
|
content: ' *';
|
|
color: red;
|
|
margin-left: -1px; // Optional: Adjust spacing
|
|
}
|
|
|
|
.field_with_errors {
|
|
|
|
input:not([type="submit"]),
|
|
.ss-main {
|
|
border: 1px solid red !important;
|
|
background-color: #ffd7d7;
|
|
color: red;
|
|
|
|
&::placeholder {
|
|
color: red;
|
|
}
|
|
}
|
|
|
|
.error-message {
|
|
color: red;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
}
|
|
} |