hautes-alpes-territoire: use custom style for field on error (#75382)

This commit is contained in:
Thomas Jund 2023-04-11 12:18:50 +02:00 committed by Frédéric Péters
parent 322773a7f9
commit 6b73b695b0
2 changed files with 12 additions and 9 deletions

View File

@ -222,15 +222,16 @@ div#rub_service {
font-size: 1.5em;
font-weight: normal;
}
div.error {
@extend .errornotice;
font-weight: normal;
min-height: 1.5em;
margin-bottom: 0;
&::before {
font-size: 30px;
top: 0;
@if ($field-on-error-style == custom) {
div.error {
@extend .errornotice;
font-weight: normal;
min-height: 1.5em;
margin-bottom: 0;
&::before {
font-size: 30px;
top: 0;
}
}
}
.previous-button button {

View File

@ -38,6 +38,8 @@ $button-border-radius: 8px;
$buttons-order: cancel, previous, submit;
$buttons-alignment: flex-end;
$field-on-error-style: custom;
$or-separator: false;
$footer-background: $font-color;