Skip to content

Commit

Permalink
style: prevent table rows from being artificially tall
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Nov 29, 2024
1 parent 79420c9 commit 97144ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ResultsGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export default function ResultsGrid() {
return (
<>
<div className="px-2 py-2">Results: {data?.length}</div>
<Table aria-label="query results" className="-z-10 h-full w-full border-t dark:border-t-zinc-300">
<Table aria-label="query results" className="-z-10 w-full border-t dark:border-t-zinc-300">
<TableHeader>
<Column id={config.fieldNames.EVENT_DATE} minWidth={120}>
Event Date
Expand Down

0 comments on commit 97144ab

Please sign in to comment.