fix(SW-1877): fixed size on home icon in skeleton

fixed width and padding for other pages
This commit is contained in:
Christian Andolf
2025-03-31 12:03:04 +02:00
parent 19723856c3
commit f5f12c2f18
3 changed files with 21 additions and 14 deletions

View File

@@ -113,7 +113,11 @@ export default function Breadcrumbs({
</>
) : (
remainingBreadcrumbs.map((breadcrumb) => (
<Breadcrumb key={breadcrumb.uid} href={breadcrumb.href}>
<Breadcrumb
key={breadcrumb.uid}
href={breadcrumb.href}
className={styles.mobile}
>
{breadcrumb.title}
</Breadcrumb>
))