Skip to content

Commit

Permalink
styling: fix overflowing analytics table
Browse files Browse the repository at this point in the history
  • Loading branch information
drew-harris authored and skeptrunedev committed Dec 3, 2024
1 parent 42759c8 commit 11ce08d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const Card = (props: CardProps) => {
"grid-column": `span ${props.width} / span ${props.width}`,
}}
class={cn(
"rounded-md border border-neutral-300 bg-white p-4 shadow-sm",
"overflow-x-auto rounded-md border border-neutral-300 bg-white p-4 shadow-sm",
classStuff.class,
)}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ export const SearchAnalyticsPage = () => {

<LowConfidenceQueries width={1} params={analyticsFilters} />

<CTRSearchQueries width={1} params={analyticsFilters} />
<CTRSearchQueries width={2} params={analyticsFilters} />
<Card
class="flex flex-col justify-between px-4"
title="No Result Queries"
subtitle="Searches with no results"
width={1}
width={2}
>
<NoResultQueries params={analyticsFilters} />
</Card>
Expand Down

0 comments on commit 11ce08d

Please sign in to comment.