Skip to content

Commit fea1278

Browse files
Merge pull request #342 from ipnet-mesh/fix/routes-card-overflow
Fix remaining Routes horizontal overflow (card content not clipped)
2 parents 7d56090 + 3575af1 commit fea1278

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/meshcore_hub/web/static/js/spa-react/pages

src/meshcore_hub/web/static/js/spa-react/pages/Routes.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ function RouteCard({
546546
data-testid="route-card"
547547
data-route-label={`${route.from_label}${route.to_label}`}
548548
>
549-
<div className="card-body">
549+
<div className="card-body overflow-hidden">
550550
<div className="flex items-start justify-between gap-2">
551551
<div className="flex-1 min-w-0">
552552
<h2 className="card-title">
@@ -1500,7 +1500,7 @@ export function RoutesPage() {
15001500
}
15011501

15021502
return (
1503-
<div>
1503+
<div className="overflow-x-hidden">
15041504
<PageHeader title={t("entities.routes")} icon={IconPath} />
15051505

15061506
<SummaryStrip routes={routes} />

0 commit comments

Comments
 (0)