Skip to content

Commit

Permalink
revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishith25 committed Jan 10, 2025
1 parent c26a9d5 commit cd0b680
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@ export default function AppointmentDetailsPage(props: Props) {
[appointment.id]: { name: `Appointment on ${appointmentDate}` },
}}
>
<div className="container mx-auto max-w-7xl">
<div className="container mx-auto p-6 max-w-7xl">
<div
className={cn(
"flex flex-col lg:flex-row",
"flex flex-col md:flex-row",
isPending && "opacity-50 pointer-events-none animate-pulse",
)}
>
Expand All @@ -150,7 +150,7 @@ export default function AppointmentDetailsPage(props: Props) {
facility={facilityQuery.data}
/>
</div>
<div className="flex gap-2 justify-center lg:justify-end px-6">
<div className="flex gap-2 justify-end px-6">
<Button
variant="outline"
onClick={() => printAppointment({ t, facility, appointment })}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const AppointmentTokenCard = ({ id, appointment, facility }: Props) => {
return (
<Card
id={id}
className="p-6 lg:w-[30rem] max-w-[30rem] border border-gray-300 relative hover:scale-105 hover:rotate-1 hover:shadow-xl transition-all duration-300 ease-in-out"
className="p-6 w-[30rem] border border-gray-300 relative hover:scale-105 hover:rotate-1 hover:shadow-xl transition-all duration-300 ease-in-out"
>
<div className="absolute inset-0 opacity-[0.1] pointer-events-none bg-[url('/images/care_logo_gray.svg')] bg-center bg-no-repeat bg-[length:60%_auto]" />

Expand Down

0 comments on commit cd0b680

Please sign in to comment.