Skip to content

Commit

Permalink
Fix : Hover color for active button (#10496)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffrin2005 authored Feb 8, 2025
1 parent 226dc5a commit da958f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Questionnaire/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function QuestionnaireList() {
<Badge
className={
questionnaire.status === "active"
? "bg-green-100 text-green-800"
? "bg-green-100 text-green-800 hover:bg-green-200"
: ""
}
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Questionnaire/show.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export function QuestionnaireShow({ id }: QuestionnaireShowProps) {
<Badge
className={
questionnaire.status === "active"
? "bg-green-100 text-green-800"
? "bg-green-100 text-green-800 hover:bg-green-200"
: ""
}
>
Expand Down

0 comments on commit da958f1

Please sign in to comment.