Skip to content

Commit

Permalink
Move print button inside the body (#8704)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacobjeevan authored Oct 7, 2024
1 parent 72c49b9 commit 4cb96e9
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions src/Components/Medicine/ManagePrescriptions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,22 @@ export default function ManagePrescriptions() {
const { goBack } = useAppHistory();

return (
<Page
title={t("manage_prescriptions")}
options={
<ButtonV2 href="prescriptions/print">
<CareIcon icon="l-print" className="text-lg" />
Print
</ButtonV2>
}
>
<Page title={t("manage_prescriptions")}>
<div
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">
<div>
<h3 className="mb-4 text-lg font-semibold">
{t("prescription_medications")}
</h3>
<div className="mb-4 flex flex-col items-center justify-between gap-2 md:flex-row">
<h3 className="text-lg font-semibold">
{t("prescription_medications")}
</h3>
<ButtonV2 href="prescriptions/print">
<CareIcon icon="l-print" className="text-lg" />
{t("print")}
</ButtonV2>
</div>
<PrescriptionBuilder />
</div>
<div>
Expand Down

0 comments on commit 4cb96e9

Please sign in to comment.