Skip to content

Commit

Permalink
fix: x icon color in the dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Raul Andrade committed Mar 6, 2022
1 parent dafa77f commit 5de11f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/bin/sh
[ -n "$CI" ] && exit 0

. "$(dirname "$0")/_/husky.sh"

yarn typecheck
Expand Down
2 changes: 1 addition & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
{
"path": "@semantic-release/git",
"assets": ["package.json", "package-lock.json", "CHANGELOG.md"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
"message": "chore(release): <%= nextRelease.version %> - <%= new Date().toLocaleDateString('en-US', {year: 'numeric', month: 'short', day: 'numeric', hour: 'numeric', minute: 'numeric' }) %> [skip ci]\n\n<%= nextRelease.notes %>"
}
],
"branches": ["main"]
Expand Down
2 changes: 1 addition & 1 deletion src/features/match/match.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const Match = ({
<div className="flex justify-center" aria-label="refetch-items">
<XIcon
aria-label="x-icon"
className="h-20 w-20 sm:h-10 sm:w-10 stroke-gray-50 hover:stroke-red-500
className="h-20 w-20 sm:h-10 sm:w-10 stroke-gray-700 dark:stroke-gray-50 hover:stroke-red-500
hover:fill-red-500 hover:scale-110 cursor-pointer
transition duration-200 ease-out hover:ease-in"
onClick={() => refetch()}
Expand Down

1 comment on commit 5de11f4

@vercel
Copy link

@vercel vercel bot commented on 5de11f4 Mar 6, 2022

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.