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

fix: Booking confirmation: Cancelled event icon regression #14018

Merged
merged 12 commits into from
Mar 12, 2024
2 changes: 1 addition & 1 deletion apps/web/modules/bookings/views/bookings-single-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ export default function Success(props: PageProps) {
!giphyImage && !isCancelled && needsConfirmation
? "bg-subtle h-12 w-12 rounded-full"
: "",
isCancelled ? "bg-error h-12 w-12 rounded-full" : ""
isCancelled ? "bg-error h-12 w-12 rounded-full " : ""
)}>
{giphyImage && !needsConfirmation && !isCancelled && (
// eslint-disable-next-line @next/next/no-img-element
Expand Down
4 changes: 2 additions & 2 deletions apps/web/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
--cal-bg-info: hsla(218,83%,98%,1);
--cal-bg-success: hsla(134,76%,94%,1);
--cal-bg-attention: hsla(37, 86%, 92%, 1);
--cal-bg-error: hsla(3,66,93,1);
--cal-bg-error: hsla(3,66%,93%,1);
Copy link
Contributor

Choose a reason for hiding this comment

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

This was the bug in light mode. I have removed the svg that you added

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Thank you

--cal-bg-dark-error: hsla(2, 55%, 30%, 1);

/* Borders */
Expand Down Expand Up @@ -95,7 +95,7 @@

@layer base {
* {
@apply border-default
@apply border-default
}
}

Expand Down
Loading