Skip to content

Commit

Permalink
Adds missing css class in docs (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarah-storm authored Sep 30, 2024
1 parent 47cd8a9 commit c3f3066
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/toggle.html
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ <h3 id="local-toggle">Local toggle</h3>
<p>Create a target and related button(s) in HTML</p>
<pre><code>&lt;div class=&quot;parent&quot;&gt;
&lt;button type=&quot;button&quot; class=&quot;js-toggle__btn&quot;&gt;&lt;/button&gt;
&lt;div id=&quot;child&quot; class=&quot;js-toggle__local&quot; data-toggle=&quot;js-toggle__btn&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;child&quot; class=&quot;js-toggle__local child&quot; data-toggle=&quot;js-toggle__btn&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
</code></pre>
<p>Example MVP CSS</p>
Expand Down
2 changes: 1 addition & 1 deletion packages/toggle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Create a target and related button(s) in HTML
```
<div class="parent">
<button type="button" class="js-toggle__btn"></button>
<div id="child" class="js-toggle__local" data-toggle="js-toggle__btn"></div>
<div id="child" class="js-toggle__local child" data-toggle="js-toggle__btn"></div>
</div>
```

Expand Down

0 comments on commit c3f3066

Please sign in to comment.