Skip to content

Commit

Permalink
Update Button.stories.js
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanKolnik committed Aug 7, 2023
1 parent e98954d commit 9b305fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stories/Button.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ DirectSelector.parameters = {

export const DirectSelectorParentDoesNotAffectDescendants = () => (
<>
<Button data-hover>Hovered 1</Button>
<Button id='foo'>Hovered 1</Button>

<div data-hover>
<div id='foo'>
<Button>Not Hovered 1 </Button>
<Button>Not Hovered 2</Button>
</div>
Expand All @@ -100,6 +100,6 @@ export const DirectSelectorParentDoesNotAffectDescendants = () => (

DirectSelectorParentDoesNotAffectDescendants.parameters = {
pseudo: {
hover: ["[data-hover]"],
hover: ["#foo"],
},
}

0 comments on commit 9b305fd

Please sign in to comment.