fix(SW-1143) fix breadcrumbs skeleton

This commit is contained in:
Pontus Dreij
2024-12-10 13:06:47 +01:00
parent 153ed086cb
commit f9e50b7ea7
2 changed files with 7 additions and 1 deletions

View File

@@ -12,7 +12,9 @@ export async function SelectHotelSkeleton({ count = 4 }: Props) {
return (
<div className={styles.skeletonContainer}>
<header className={styles.header}>
<SkeletonShimmer height={"25px"} width={"400px"} />
<div className={styles.breadcrumbs}>
<SkeletonShimmer height={"25px"} width={"400px"} />
</div>
<div className={styles.title}>
<div className={styles.cityInformation}>
<SkeletonShimmer height={"25px"} width={"200px"} />

View File

@@ -132,4 +132,8 @@
.skeletonContainer .sideBar {
gap: var(--Spacing-x3);
}
.skeletonContainer .breadcrumbs {
margin: 0 auto;
max-width: var(--max-width-navigation);
}
}