Skip to content

Commit

Permalink
adds missing border when procedures are selected
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad committed Sep 19, 2024
1 parent 1963673 commit 13e332f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Components/LogUpdate/Sections/NursingCare.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ const NursingCare = ({ log, onChange }: LogUpdateSectionProps) => {
errorClassName="hidden"
/>
{!!nursing.length && (
<table className="mb-8 w-full border-collapse">
<table className="mb-8 mt-2 w-full border-collapse">
<tbody>
{nursing.map((obj) => (
<tr key={obj.procedure}>
<td className="whitespace-nowrap border border-r-2 border-t-0 border-secondary-400 border-r-secondary-300 bg-secondary-50 p-2 pr-4 text-left text-sm font-semibold md:pr-16">
<td className="whitespace-nowrap border border-r-2 border-secondary-400 border-r-secondary-300 bg-secondary-50 p-2 pr-4 text-left text-sm font-semibold md:pr-16">
{t(`NURSING_CARE_PROCEDURE__${obj.procedure}`)}
</td>
<td className="w-full border border-t-0 border-secondary-400">
<td className="w-full border border-secondary-400">
<AutoExpandingTextInputFormField
innerClassName="border-none rounded-none"
name={`${obj.procedure}__description`}
Expand Down

0 comments on commit 13e332f

Please sign in to comment.