We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8f2873 commit b9c20acCopy full SHA for b9c20ac
src/ui/Task.js
@@ -20,21 +20,21 @@ css.setClass('.root', {
20
fontFamily : 'sans-serif',
21
transition : 'all 0.2s',
22
color : 'hsl(0, 0%, 20%)',
23
- ':hover': {
24
- background: 'hsl(139, 56%, 90%)',
25
- }
26
})
+css.setClass('.root:hover', {
+ background: 'hsl(139, 56%, 90%)',
+});
27
28
29
30
css.setClass('.completed', {
31
background : 'hsl(139, 56%, 50%)',
32
color : 'hsl(0, 100%, 100%)',
33
borderBottom : '1px solid hsl(0, 100%, 100%)',
34
35
- background: 'hsl(139, 56%, 60%)'
36
37
+css.setClass('.completed:hover', {
+ background: 'hsl(139, 56%, 60%)'
38
39
40
0 commit comments