File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/course/02- lessons/01-Bronze/StateColocationVsStateLifting/final/components Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,15 +75,15 @@ export const Form = ({ onPokemonTypesUpdate }: IForm) => {
75
75
< label
76
76
key = { pokemonType }
77
77
className = { classNames (
78
- 'bg-white p-3 font-bold rounded-md cursor-pointer relative' ,
78
+ 'p-3 font-bold rounded-md cursor-pointer relative' ,
79
79
! hasSelectedAllOptions &&
80
80
! isSelected &&
81
- 'hover:bg-slate-200 focus-within:bg-slate-200' ,
81
+ 'bg-white hover:bg-slate-200 focus-within:bg-slate-200' ,
82
82
isSelected &&
83
83
'bg-blue-600 text-white focus-within:bg-blue-700 hover:bg-blue-700' ,
84
84
hasSelectedAllOptions &&
85
85
! isSelected &&
86
- 'opacity-80 cursor-not-allowed'
86
+ 'bg-white opacity-80 cursor-not-allowed'
87
87
) }
88
88
>
89
89
{ pokemonType }
You can’t perform that action at this time.
0 commit comments