feat(SW-340): Added HotelCardDialog component

This commit is contained in:
Pontus Dreij
2024-11-07 16:07:54 +01:00
parent 7a49d4a393
commit 2748120890
19 changed files with 309 additions and 41 deletions

View File

@@ -67,7 +67,7 @@
}
@media screen and (min-width: 1367px) {
.card.listing {
.card.pageListing {
grid-template-areas:
"image header"
"image hotel"
@@ -76,30 +76,30 @@
padding: 0;
}
.listing .imageContainer {
.pageListing .imageContainer {
position: relative;
min-height: 200px;
width: 518px;
}
.listing .tripAdvisor {
.pageListing .tripAdvisor {
position: absolute;
display: block;
left: 7px;
top: 7px;
}
.listing .hotelInformation {
.pageListing .hotelInformation {
padding-top: var(--Spacing-x2);
padding-right: var(--Spacing-x2);
}
.listing .hotel {
.pageListing .hotel {
gap: var(--Spacing-x2);
padding-right: var(--Spacing-x2);
}
.listing .prices {
.pageListing .prices {
flex-direction: row;
align-items: center;
justify-content: space-between;
@@ -107,11 +107,11 @@
padding-bottom: var(--Spacing-x2);
}
.listing .detailsButton {
.pageListing .detailsButton {
border-bottom: none;
}
.listing .button {
.pageListing .button {
width: 160px;
}
}