Skip to content

Commit

Permalink
Feat(web): Introduce button-unstyled helper
Browse files Browse the repository at this point in the history
  • Loading branch information
crishpeen committed Jan 8, 2025
1 parent a43b7c7 commit b6e3892
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/web/src/scss/helpers/buttons/_buttons.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@use '../../tools/reset';

.button-unstyled {
@include reset.button();
}
21 changes: 21 additions & 0 deletions packages/web/src/scss/helpers/buttons/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{{#> web/layout/default title="Buttons" parentPageName="Helpers" }}

<section class="UNSTABLE_Section">

<div class="Container">

<h2 class="docs-Heading">Buttons</h2>

<div class="docs-Stack docs-Stack--start">

<button type="button" class="button-unstyled">
Unstyled button
</button>

</div>

</div>

</section>

{{/web/layout/default}}
1 change: 1 addition & 0 deletions packages/web/src/scss/helpers/buttons/index.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@forward 'buttons';
1 change: 1 addition & 0 deletions packages/web/src/scss/helpers/index.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@forward 'accessibility';
@forward 'animations';
@forward 'breakout';
@forward 'buttons';
@forward 'images';
@forward 'links';
@forward 'lists';
Expand Down

0 comments on commit b6e3892

Please sign in to comment.