Skip to content

Commit

Permalink
Merge pull request #108 from chingu-voyages/ch-112-add-hover-effect-t…
Browse files Browse the repository at this point in the history
…o-recipe-tag-links

Ch 112 add hover effect to recipe tag links
  • Loading branch information
timDeHof authored Nov 12, 2023
2 parents 7beea25 + e6bd89a commit 959df9f
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,35 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.


### [0.0.30](https://github.com/chingu-voyages/v46-tier2-team-19/compare/v0.0.28...v0.0.30) (2023-11-12)


### Features

* **assets:** add art and picture components ([51554a1](https://github.com/chingu-voyages/v46-tier2-team-19/commit/51554a12b884d332c7bc3d185c6661927379b85f))
* **tags.jsx:** add hover effect to recipe tag links ([5b38dae](https://github.com/chingu-voyages/v46-tier2-team-19/commit/5b38dae501f0a9397d9f1d014cdceec58d1afaa1))


### Bug Fixes

* **recipe-list.jsx:** add replace prop to Navigate component to prevent history stack overflow ([c4e8648](https://github.com/chingu-voyages/v46-tier2-team-19/commit/c4e8648df720890cbc469536bcb399ee1dd5c77d))

### [0.0.27](https://github.com/chingu-voyages/v46-tier2-team-19/compare/v0.0.26...v0.0.27) (2023-11-10)


### Features

* **search.jsx:** enhance page heading and adjust layout for better user experience ([25ff48a](https://github.com/chingu-voyages/v46-tier2-team-19/commit/25ff48a4f43bc6fe249ed4f0e5580e5154730ed7))


### [0.0.29](https://github.com/chingu-voyages/v46-tier2-team-19/compare/v0.0.28...v0.0.29) (2023-11-12)


### Features


* **tags.jsx:** add hover effect to recipe tag links ([5b38dae](https://github.com/chingu-voyages/v46-tier2-team-19/commit/5b38dae501f0a9397d9f1d014cdceec58d1afaa1))
* **assets:** add art and picture components ([51554a1](https://github.com/chingu-voyages/v46-tier2-team-19/commit/51554a12b884d332c7bc3d185c6661927379b85f))
* **constants/index.js:** reorder header & footer menu items ([72fd3af](https://github.com/chingu-voyages/v46-tier2-team-19/commit/72fd3af6809c2f8349d37da441aad01118741d2f))
* add .env.example file with VITE_TASTY_API_KEY and VITE_TASTY_API_URL variables ([d80878c](https://github.com/chingu-voyages/v46-tier2-team-19/commit/d80878c4aac42bb14fa6e8cecd9f985c06f04cc0))
Expand All @@ -16,6 +39,7 @@ All notable changes to this project will be documented in this file. See [standa
* **main:** suppress console logs in non-development environments ([f329eb1](https://github.com/chingu-voyages/v46-tier2-team-19/commit/f329eb1d061705241f1e9fdb303fc1fcdedd455c))



### Bug Fixes

* **recipe-list.jsx:** add replace prop to Navigate component to prevent history stack overflow ([c4e8648](https://github.com/chingu-voyages/v46-tier2-team-19/commit/c4e8648df720890cbc469536bcb399ee1dd5c77d))
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "recipe-app",
"private": true,
"version": "0.0.29",
"version": "0.0.30",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src/features/recipes/components/recipe-details/Tags.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const Tags = ({ tags }) => {
<span key={tag.name}>
<Link
to={`/search?q=${tag.name}`}
className="text-watermelon font-bold"
className="text-watermelon font-bold decoration-tangerine decoration-2 underline-offset-2 hover:underline"
key={tag.name + String(Math.random())}
>
{tag.display_name}
Expand Down

0 comments on commit 959df9f

Please sign in to comment.