Skip to content

Commit

Permalink
Fix(website!): box content (#3730)
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson authored Feb 24, 2025
1 parent e4d8cc7 commit 3d3980a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/components/SearchPage/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export const Table: FC<TableProps> = ({
<th
key={c.field}
onClick={() => handleSort(c.field)}
className='px-2 py-2 text-xs font-medium tracking-wider text-gray-500 uppercase cursor-pointer last:pr-6 text-left'
className='px-2 py-2 text-xs font-medium tracking-wider text-gray-500 uppercase cursor-pointer box-content last:pr-6 text-left'
style={{
minWidth: getColumnWidthStyle(c.columnWidth),
}}
Expand Down Expand Up @@ -220,7 +220,7 @@ export const Table: FC<TableProps> = ({
{columns.map((c) => (
<td
key={`${index}-${c.field}`}
className='px-2 py-2 text-primary-900 last:pr-6'
className='px-2 py-2 text-primary-900 box-content last:pr-6'
style={{
minWidth: getColumnWidthStyle(c.columnWidth),
}}
Expand Down

0 comments on commit 3d3980a

Please sign in to comment.