Fix/BOOK-323 enter details scroll error * fix(BOOK-323): scroll to invalid element on submit on enter details * fix(BOOK-323): update error message design * fix(BOOK-323): clean up * fix(BOOK-323): scroll to fields in room in right order * fix(BOOK-323): add id to translations * fix(BOOK-323): remove undefined * fix(BOOK-323): fix submitting state * fix(BOOK-323): use ref in multiroom for scrolling to right element, add membershipNo * fix(BOOK-323): fix invalid border country * fix(BOOK-323): use error message component * fix(BOOK-323): fix invalid focused styling on mobile * fix(BOOK-323): remove redundant dependency in callback Approved-by: Erik Tiekstra
22 lines
384 B
CSS
22 lines
384 B
CSS
.container {
|
|
display: flex;
|
|
padding: var(--Space-x15);
|
|
background-color: var(--Surface-Primary-Default);
|
|
border-radius: var(--Corner-radius-md);
|
|
border: 1px solid var(--Border-Default);
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.textDefault {
|
|
color: var(--Text-Default);
|
|
}
|
|
|
|
.textError {
|
|
color: var(--Text-Feedback-Error-Accent);
|
|
}
|