feat: SW-276 Implemented Guests and rooms picker
This commit is contained in:
34
components/GuestsRoomsPicker/guests-rooms-picker.module.css
Normal file
34
components/GuestsRoomsPicker/guests-rooms-picker.module.css
Normal file
@@ -0,0 +1,34 @@
|
||||
.container {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
&[data-isopen="true"] {
|
||||
overflow: visible;
|
||||
}
|
||||
}
|
||||
.hideWrapper {
|
||||
background-color: var(--Main-Grey-White);
|
||||
border-radius: var(--Corner-radius-Medium);
|
||||
box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, 0.08);
|
||||
padding: var(--Spacing-x-one-and-half);
|
||||
position: absolute;
|
||||
/** BookingWidget padding + border-width */
|
||||
top: calc(100% + var(--Spacing-x2) + 1px);
|
||||
}
|
||||
.btn {
|
||||
background: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.body {
|
||||
opacity: 0.8;
|
||||
}
|
||||
.footer {
|
||||
display: grid;
|
||||
gap: 20px;
|
||||
grid-template-columns: auto auto;
|
||||
margin: 10px 0 0;
|
||||
}
|
||||
Reference in New Issue
Block a user