Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
fix: star colors (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bashamega authored Oct 1, 2024
1 parent 8a9df99 commit 3b63d64
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app/rate/Form.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,35 +111,35 @@ export default function Form({ name = "", owner = "" }) {
type="radio"
name="rating"
value="1"
className="mask mask-star-2 bg-green-500"
className="mask mask-star-2 bg-yellow-500 !text-yellow-500"
onChange={(e) => setRating(e.target.value)}
/>
<input
type="radio"
name="rating"
value="2"
className="mask mask-star-2 bg-green-500"
className="mask mask-star-2 bg-yellow-500 !text-yellow-500"
onChange={(e) => setRating(e.target.value)}
/>
<input
type="radio"
name="rating"
value="3"
className="mask mask-star-2 bg-green-500"
className="mask mask-star-2 bg-yellow-500 !text-yellow-500"
onChange={(e) => setRating(e.target.value)}
/>
<input
type="radio"
name="rating"
value="4"
className="mask mask-star-2 bg-green-500"
className="mask mask-star-2 bg-yellow-500 !text-yellow-500"
onChange={(e) => setRating(e.target.value)}
/>
<input
type="radio"
name="rating"
value="5"
className="mask mask-star-2 bg-green-500"
className="mask mask-star-2 bg-yellow-500 !text-yellow-500"
onChange={(e) => setRating(e.target.value)}
defaultChecked
/>
Expand Down

0 comments on commit 3b63d64

Please sign in to comment.