Skip to content

Commit

Permalink
fixed responsiveness for medium devices
Browse files Browse the repository at this point in the history
  • Loading branch information
manmeetnagii committed Jan 22, 2025
1 parent 6ead1ea commit 573e53c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/Appointments/AppointmentDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export default function AppointmentDetail(props: Props) {
<div className="container mx-auto p-6 max-w-7xl">
<div
className={cn(
"flex flex-col md:flex-row",
"flex flex-col md:flex-col lg:flex-row",
isPending && "opacity-50 pointer-events-none animate-pulse",
)}
>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Appointments/components/AppointmentTokenCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const AppointmentTokenCard = ({ id, appointment, facility }: Props) => {
return (
<Card
id={id}
className="p-6 lg: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 lg:w-[25rem] 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:40%_auto] lg:bg-[length:60%_auto]" />

Expand Down

0 comments on commit 573e53c

Please sign in to comment.