Skip to content

Commit

Permalink
fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad committed Oct 26, 2023
1 parent ab9aa6e commit 464ac20
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Components/Medicine/PrescriptionDetailCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export default function PrescriptionDetailCard({
</div>

<div className="flex flex-col gap-1 text-xs text-gray-600 md:mt-3 md:flex-row md:items-center">
<span className="flex gap-1">
<span className="flex gap-1 font-medium">
Prescribed
<RecordMeta
time={prescription.created_date}
Expand Down Expand Up @@ -182,7 +182,9 @@ const Detail = (props: {
{props.children ? (
<span className="font-medium">{props.children}</span>
) : (
<span className="italic text-gray-500">{t("not_specified")}</span>
<span className="whitespace-nowrap text-xs font-medium text-gray-500">
{t("not_specified")}
</span>
)}
</div>
</div>
Expand Down

0 comments on commit 464ac20

Please sign in to comment.