23 lines
334 B
CSS
23 lines
334 B
CSS
.bookingCodeLabel {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Spacing-x-half);
|
|
}
|
|
|
|
.error {
|
|
display: flex;
|
|
gap: var(--Spacing-x-half);
|
|
}
|
|
|
|
.errorIcon {
|
|
min-width: 20px;
|
|
}
|
|
|
|
.bookingCodeRemember {
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
|
|
/* ToDo: Remove once remember checkbox design are ready */
|
|
display: none;
|
|
}
|