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

restyled booking confirmation panel to more accurately reflect figma design #736

Merged
merged 4 commits into from
Aug 9, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ type SuccessfulBookingProps = {
const SuccessfulBooking = ({ startDate, endDate }: SuccessfulBookingProps) => {
return (
<>
<div className="border-gray-3 h-auto w-full rounded-md border-2 bg-white py-5">
<h3 className="text-dark-blue-100 xxs:mb-5 mb-10 mt-5 text-center font-bold">
<div className="border-gray-3 flex h-auto w-full flex-col items-start rounded-md border-2 bg-white px-8 py-2">
<h3 className="text-dark-blue-100 xxs:mb-5 mb-10 mt-5 font-bold">
Your lodge booking has been confirmed!
</h3>
<h5 className="text-dark-blue-100 case-capital text-center font-bold uppercase">
<h5 className="text-dark-blue-100 case-capital font-bold uppercase">
You have booked for:
</h5>
<h4 className="text-dark-blue-100 xxs:mb-5 mb-10 mt-1 text-center">
<h4 className="text-dark-blue-100 xxs:mb-5 mb-10 mt-1">
{startDate} to {endDate}
</h4>
<h4 className="text-dark-blue-100 xxs:mb-10 mb-20 text-center">
<h4 className="text-dark-blue-100 xxs:mb-10 mb-20 ">
Please check your email for the confirmation.
</h4>
<div className="mb-2 flex justify-center">
<div className="mb-2">
<button className="text-dark-blue-100 border-dark-blue-100 hover:bg-dark-blue-100 rounded-md border bg-white p-2 text-sm font-bold hover:scale-105 hover:text-white">
<Link href="/bookings">Back to Bookings</Link>
</button>
Expand Down
Loading