21 lines
366 B
CSS
21 lines
366 B
CSS
.hotelCardDialogListing {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: var(--Spacing-x1);
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.hotelCardDialogListing dialog {
|
|
position: relative;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.hotelCardDialogListing > div:first-child {
|
|
margin-left: var(--Spacing-x2);
|
|
}
|
|
|
|
.hotelCardDialogListing > div:last-child {
|
|
margin-right: var(--Spacing-x2);
|
|
}
|