feat: SW-963 Implemented error states and handling booking code and multiroom

This commit is contained in:
Hrishikesh Vaipurkar
2025-02-24 17:06:20 +01:00
parent 202d84218c
commit 2cd1b6c72c
16 changed files with 374 additions and 158 deletions

View File

@@ -117,9 +117,22 @@
.addRoomMobileContainer {
display: grid;
padding-bottom: calc(var(--sticky-button-height) + 20px);
gap: var(--Spacing-x2);
}
.addRoomMobileContainer button {
width: 150px;
margin: 0 auto;
padding-bottom: calc(var(--sticky-button-height) + 20px);
}
.addRoomMobileContainer .addRoomMobileDisabledText {
padding: var(--Spacing-x1) var(--Spacing-x2);
background-color: var(--Base-Background-Primary-Normal);
margin: 0 var(--Spacing-x2);
border-radius: var(--Corner-radius-Medium);
display: flex;
gap: var(--Spacing-x1);
}
}