Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix responsiveness on patients page #6759

Merged
merged 2 commits into from
Dec 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Components/Patient/ManagePatients.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -589,10 +589,10 @@ export const PatientManager = () => {
)}
</div>
<div className="flex w-full flex-col gap-2 pl-2 md:block md:flex-row">
<div className="flex w-full justify-between gap-2">
<div className="font-semibold">
<div className="flex w-full items-center justify-between gap-2">
<div className="flex flex-wrap gap-2 font-semibold">
<span className="text-xl capitalize">{patient.name}</span>
<span className="ml-4 text-gray-800">
<span className="text-gray-800">
{formatAge(patient.age, patient.date_of_birth, true)}
</span>
</div>
Expand Down
Loading