Skip to content

Commit

Permalink
add padding (#6647)
Browse files Browse the repository at this point in the history
  • Loading branch information
AshrafMd-1 authored Nov 22, 2023
1 parent 34fa97b commit f4f7917
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Components/Patient/PatientInfoCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@ export default function PatientInfoCard(props: {
Number(consultation?.review_interval) > 0 && (
<div
className={
"mb-2 inline-flex w-full items-center justify-center rounded-lg border border-gray-500 text-xs font-semibold leading-4 " +
"mb-2 inline-flex w-full items-center justify-center rounded-lg border border-gray-500 p-1 text-xs font-semibold leading-4 " +
(dayjs().isBefore(patient.review_time)
? " bg-gray-100"
: " bg-red-400 p-1 text-white")
? " bg-gray-100 "
: " bg-red-400 text-white")
}
>
<i className="text-md fas fa-clock mr-2"></i>
Expand Down

0 comments on commit f4f7917

Please sign in to comment.