fix(SW-983): Fixed bug with hotel card in map

This commit is contained in:
Pontus Dreij
2024-11-22 17:05:29 +01:00
parent 0a35243d88
commit 333be1379c
7 changed files with 88 additions and 54 deletions

View File

@@ -1,6 +1,6 @@
.dialog {
padding-bottom: var(--Spacing-x1);
bottom: 32px;
bottom: 0;
left: 50%;
transform: translateX(-50%);
border: none;
@@ -33,6 +33,8 @@
.imageContainer {
position: relative;
min-width: 177px;
border-radius: var(--Corner-radius-Medium) 0 0 var(--Corner-radius-Medium);
overflow: hidden;
}
.imageContainer img {
@@ -108,4 +110,7 @@
.memberPrice {
display: none;
}
.dialog {
bottom: 32px;
}
}