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 { .slotWrapper {
display: flex; display: flex;
justify-content: center; justify-content: flex-start;
align-items: center; align-items: flex-start;
@media screen and (min-width: 1367px) { @media screen and (min-width: 1367px) {
display: none; display: none;

View File

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