Skip to content

Commit

Permalink
Swap slate with gray (#924)
Browse files Browse the repository at this point in the history
  • Loading branch information
timuric authored Oct 11, 2023
1 parent fd54357 commit bea64a3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
90deg,
theme(colors.white) 0%,
theme(colors.white) 50%,
theme(colors.slate.300) calc(50%),
theme(colors.slate.300) calc(50% + 1px),
theme(colors.slate.50) calc(50% + 1px),
theme(colors.slate.50) 100%
theme(colors.gray.300) calc(50%),
theme(colors.gray.300) calc(50% + 1px),
theme(colors.gray.50) calc(50% + 1px),
theme(colors.gray.50) 100%
);
}
}
2 changes: 1 addition & 1 deletion src/checkout/hooks/useAlerts/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import clsx from "clsx";
import { type TypeOptions } from "react-toastify";

export const alertsContainerProps = {
toastClassName: "rounded shadow-none mb-2 p-0 flex font-sans text-base text-slate-900 min-h-0 bg-white",
toastClassName: "rounded shadow-none mb-2 p-0 flex font-sans text-base text-gray-900 min-h-0 bg-white",
bodyClassName: (data?: { type?: TypeOptions }) =>
clsx("flex w-full items-start px-5 py-3", {
["bg-red-400"]: data?.type === "error",
Expand Down

1 comment on commit bea64a3

@vercel
Copy link

@vercel vercel bot commented on bea64a3 Oct 11, 2023

Choose a reason for hiding this comment

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

Please sign in to comment.