Skip to content

Commit

Permalink
Fixed: ohcnetwork#8265: Neurological Tables Padding Issue (ohcnetwork…
Browse files Browse the repository at this point in the history
  • Loading branch information
0xvish authored and UdaySagar-Git committed Aug 23, 2024
1 parent e14acb4 commit 2ab8f4d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Components/Facility/Consultations/NeurologicalTables.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ const DataTable = (props: any) => {
return (
<div
key={`${title}_${i}`}
className="flex flex-col divide-x divide-secondary-200"
className="flex flex-col justify-between divide-x divide-secondary-200"
>
<div className="w-20 bg-secondary-50 px-2 py-3 text-center text-xs font-medium leading-4 text-secondary-900">
<div className="w-20 bg-secondary-50 px-2 py-4 text-center text-xs font-medium leading-4 text-secondary-900">
{x.date}
</div>
<div className="whitespace-nowrap bg-white px-2 py-4 text-center text-sm leading-5 text-secondary-900">
<div className="whitespace-nowrap bg-white px-2 py-5 text-center text-xs leading-4 text-secondary-900">
{x.left}
</div>
<div className="whitespace-nowrap bg-white px-2 py-4 text-center text-sm leading-5 text-secondary-900">
<div className="whitespace-nowrap bg-white px-2 py-5 text-center text-xs leading-4 text-secondary-900">
{x.right}
</div>
</div>
Expand Down Expand Up @@ -321,7 +321,7 @@ export const NeurologicalTable = (props: any) => {
<div className="bg-secondary-50 px-2 py-4 text-center text-sm font-medium uppercase leading-5 tracking-wider text-secondary-700">
Motor
</div>
<div className="bg-secondary-50 px-2 py-4 text-center text-sm font-medium uppercase leading-5 tracking-wider text-secondary-700">
<div className="border-t-2 bg-secondary-50 px-2 py-4 text-center text-sm font-medium uppercase leading-5 tracking-wider text-secondary-700">
Total
</div>
</div>
Expand All @@ -332,7 +332,7 @@ export const NeurologicalTable = (props: any) => {
key={`glascow_${i}`}
className="flex flex-col divide-x divide-secondary-200"
>
<div className="w-20 bg-secondary-50 px-2 py-3 text-center text-xs font-medium leading-4 text-secondary-800">
<div className="w-20 bg-secondary-50 px-2 py-4 text-center text-xs font-medium leading-5 text-secondary-800">
{x.date}
</div>
<div className="whitespace-nowrap bg-white px-6 py-4 text-center text-sm leading-5 text-secondary-800">
Expand Down

0 comments on commit 2ab8f4d

Please sign in to comment.