diff --git a/apps/site/components/Common/Breadcrumbs/BreadcrumbItem/index.module.css b/apps/site/components/Common/Breadcrumbs/BreadcrumbItem/index.module.css index eca19df43f8ef..713fad32dac39 100644 --- a/apps/site/components/Common/Breadcrumbs/BreadcrumbItem/index.module.css +++ b/apps/site/components/Common/Breadcrumbs/BreadcrumbItem/index.module.css @@ -7,8 +7,8 @@ text-sm font-medium; - &:last-child { - @apply w-full; + &:not(:last-child) { + @apply shrink-0; } a { diff --git a/apps/site/components/Common/Breadcrumbs/BreadcrumbRoot/index.module.css b/apps/site/components/Common/Breadcrumbs/BreadcrumbRoot/index.module.css index a0d9c35c8a58c..51043398d4657 100644 --- a/apps/site/components/Common/Breadcrumbs/BreadcrumbRoot/index.module.css +++ b/apps/site/components/Common/Breadcrumbs/BreadcrumbRoot/index.module.css @@ -1,6 +1,7 @@ .list { - @apply flex - w-full + @apply xs:w-full + flex + w-screen gap-5 px-6; }