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 2 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,7 +8,7 @@ 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">
<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 text-center font-bold">
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you have to remove the text-center here

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

and any other ones that are causing the small screen to have it centered

Your lodge booking has been confirmed!
</h3>
Expand Down
Loading