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

Issue #2391 changed button color in whishlist #2424

Merged
merged 2 commits into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/User/pages/Dashboard/dashboard-wishlist.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const DashboardWishlist = () => {
type="button"
className={`${buttonBgClass} w-full sm:w-auto`}
onClick={onClearWishlist}>
Clear Wishlist ❤
Clear Wishlist ❤️a
</button>
</div>
</>
Expand Down
2 changes: 1 addition & 1 deletion src/User/pages/Order/WishlistEmpty.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import empty from "../../../assets/emptyWishlist.png";

const WishlistEmpty = () => {
const buttonBgClass =
"bg-blue-600 text-white px-4 py-2 rounded-lg hover:bg-blue-700 transition duration-300 ease-in-out mt-3";
"bg-[#4a7c5e] text-white px-4 py-2 rounded-lg hover:bg-[#3b624d] transition duration-300 ease-in-out mt-3";

return (
<div className="flex flex-col pt-2">
Expand Down