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:
@@ -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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user