Skip to content

Commit

Permalink
style: update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathantneal committed Aug 12, 2021
1 parent 55db34d commit fce9878
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion packages/test/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,23 @@ type CSS = Stitches.CSS<typeof config>

const Component1 = styled('button', {
color: '$', // we should see `$red100` here
'&:hover': {
color: '$', // we should see `$red100` here
'&:hover': {
color: '$', // we should see `$red100` here
},
},
variants: {
mySize: {
myLarge: {},
myLarge: {
color: '$', // we should see `$red100` here
'&:hover': {
color: '$', // we should see `$red100` here
'&:hover': {
color: '$', // we should see `$red100` here
},
},
},
},
},
})
Expand Down

0 comments on commit fce9878

Please sign in to comment.