Merged in feat/SW-1230-meeting-booking-widget (pull request #1507)

feat(SW-1230): Added meeting booking widget to hotel meeting pages

* feat(SW-1230): Added meeting booking widget to hotel meeting pages


Approved-by: Fredrik Thorsson
This commit is contained in:
Erik Tiekstra
2025-03-11 06:33:04 +00:00
parent 67004e5904
commit 2ef2b2e28d
10 changed files with 387 additions and 15 deletions

View File

@@ -0,0 +1,21 @@
import SkeletonShimmer from "../../SkeletonShimmer"
import styles from "./skeleton.module.css"
export default function MeetingPackageWidgetSkeleton() {
return (
<>
<div className={styles.mobile}>
<SkeletonShimmer height="40px" width="100%" />
</div>
<div className={styles.desktop}>
<SkeletonShimmer height="60px" width="30%" />
<SkeletonShimmer height="60px" width="22%" />
<SkeletonShimmer height="60px" width="12%" />
<SkeletonShimmer height="60px" width="12%" />
<SkeletonShimmer height="60px" width="12%" />
<SkeletonShimmer height="60px" width="12%" />
</div>
</>
)
}

View File

@@ -0,0 +1,20 @@
.mobile,
.desktop {
padding: var(--Spacing-x2) 0;
background-color: var(--Base-Surface-Primary-light-Normal);
}
.desktop {
display: none;
}
/* Meeting booking widget changes design at 948px */
@media screen and (min-width: 948px) {
.mobile {
display: none;
}
.desktop {
display: flex;
gap: var(--Spacing-x2);
}
}