Skip to content

Commit

Permalink
feat: add color border
Browse files Browse the repository at this point in the history
  • Loading branch information
caro3801 committed Jul 1, 2024
1 parent c7c59a1 commit 04b5c43
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/stories/basics/Colors.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ export default {
}
},
template: `
<div style="background: var(--bs-primary); width: 50px; height: 50px">
<span class=""></span>Test
<div class="bg-primary" style="width: 50px; height: 50px; border: solid 1px black">
Test
</div>
<div style="background: var(--bs-secondary); width: 50px; height: 50px">
<div class="bg-secondary" style="width: 50px; height: 50px; border: solid 1px black">
Test
</div>
<div style="background: var(--bs-tertiary); width: 50px; height: 50px">
<div class="bg-tertiary" style="width: 50px; height: 50px; border: solid 1px black">
Test
</div>
<div style="background: var(--bs-body-color); width: 50px; height: 50px">
<div class="bg-body" style="width: 50px; height: 50px; border: solid 1px black">
Test
</div>
`
Expand Down

0 comments on commit 04b5c43

Please sign in to comment.