Skip to content

Commit

Permalink
FE PLV Cell padding tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
wtcarter committed Dec 11, 2024
1 parent 95dfbf6 commit 44c8a9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/PlanLimitsUI/src/components/DataTable/DataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -248,10 +248,10 @@ const DataTable: React.FC<DataTableProps> = ({
return (
<div>
{/* eslint-disable-next-line jsx-a11y/label-has-associated-control */}
<label className="text-gray-700 font-bold w-full pt-3 pb-1">Show data for:</label>
<label className="py-2 px-4 text-gray-700 font-bold w-full ">Show data for:</label>

{/* Outer filters & actions (eg, water type and month) */}
<div className="flex justify-between items-center mt-2 mb-6">
<div className="flex py-2 px-4 justify-between items-center">
<Filters filters={outerFilters} filterValue={filterValue} setFilterValue={setFilterValue} />

<div className="space-x-4">
Expand All @@ -272,7 +272,7 @@ const DataTable: React.FC<DataTableProps> = ({
{/* Column headings */}
<tr>
{visibleColumns.map((col) => (
<th key={col.name} className={`bg-kapiti `+
<th key={col.name} className={`py-2 px-4 bg-kapiti `+
`text-${col.align || (col.type === 'number' ? 'right' : 'left')}`+
`text-right text-white p-2 font-medium`}>
{col.heading}
Expand Down

0 comments on commit 44c8a9c

Please sign in to comment.