Merged in fix/left-align-ameneties (pull request #2734)

* left align sho all ameneties
This commit is contained in:
Joakim Jäderberg
2025-08-29 11:48:40 +00:00
parent 2a9313362f
commit a0fa238b27
2 changed files with 3 additions and 3 deletions

View File

@@ -56,8 +56,8 @@
.slotWrapper {
display: flex;
justify-content: center;
align-items: center;
justify-content: flex-start;
align-items: flex-start;
@media screen and (min-width: 1367px) {
display: none;

View File

@@ -109,8 +109,8 @@ export function HotelInfoCard({
{slot}
</div>
</div>
<div className={styles.slotWrapper}>{slot}</div>
</section>
<div className={styles.slotWrapper}>{slot}</div>
{alerts.map((alert) => (
<SpecialAlert key={alert.id} alert={alert} />
))}