Skip to content

Commit

Permalink
WIP... this one is solving the card sizing issue when there's only on…
Browse files Browse the repository at this point in the history
…e row of integrations available.
  • Loading branch information
seanspeaks committed Oct 15, 2024
1 parent bc2a9dc commit aeaaac8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ui/lib/integration/IntegrationHorizontal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function IntegrationHorizontal(props) {
return (
<>
<div
className="flex flex-nowrap p-4 bg-white rounded-lg shadow-xs"
className="flex flex-nowrap p-4 bg-white rounded-lg shadow-xs h-[128px]"
data-testid="integration-horizontal"
>
<div className="flex flex-1">
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/lib/integration/IntegrationList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const IntegrationList = (props) => {
return (
<>
{isloading && (
<div className="grid gap-6 lg:col-span-1 lg:grid-cols-1 xl:col-span-2 xl:grid-cols-2 2xl:col-span-3 2xl:grid-cols-3">
<div className="grid gap-6 lg:col-span-1 lg:grid-cols-1 xl:col-span-2 xl:grid-cols-2 2xl:col-span-3 2xl:grid-cols-3 grid-auto-rows-[128px]">
<IntegrationSkeleton layout={props.componentLayout} />
<IntegrationSkeleton layout={props.componentLayout} />
<IntegrationSkeleton layout={props.componentLayout} />
Expand Down

0 comments on commit aeaaac8

Please sign in to comment.