Skip to content

Commit

Permalink
Increased Form Size & Updated Indicator Field
Browse files Browse the repository at this point in the history
  • Loading branch information
renoseHarsh committed Aug 3, 2024
1 parent d70b99a commit 46deaf1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Components/Medicine/ManagePrescriptions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function ManagePrescriptions() {
return (
<Page title={t("manage_prescriptions")}>
<div
className="mx-auto flex w-full max-w-4xl flex-col gap-10 rounded bg-white p-6 transition-all sm:rounded-xl sm:p-12"
className="mx-auto flex w-full max-w-5xl flex-col gap-10 rounded bg-white p-6 transition-all sm:rounded-xl sm:p-12"
id="medicine-preview"
>
<div className="flex flex-col gap-10 divide-y-2 divide-dashed divide-secondary-600">
Expand Down
6 changes: 3 additions & 3 deletions src/Components/Medicine/PrescriptionDetailCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,19 +178,19 @@ export default function PrescriptionDetailCard({
{prescription.dosage_type === "PRN" ? (
<>
<Detail
className="col-span-10 md:col-span-6"
className="col-span-10 md:col-span-4"
label={t("indicator")}
>
{prescription.indicator}
</Detail>
<Detail
className="col-span-10 md:col-span-2"
className="col-span-10 md:col-span-3"
label={t("max_dosage_24_hrs")}
>
{prescription.max_dosage}
</Detail>
<Detail
className="col-span-10 md:col-span-2"
className="col-span-10 md:col-span-3"
label={t("min_time_bw_doses")}
>
{prescription.min_hours_between_doses &&
Expand Down

0 comments on commit 46deaf1

Please sign in to comment.