Skip to content

Commit

Permalink
docs: fix invalid documentation on tailwind the example
Browse files Browse the repository at this point in the history
  • Loading branch information
godnondsilva committed Mar 23, 2024
1 parent dd43521 commit 7d234f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Let's create a classic `Button` component accepting two props:
@scope (.button) {
button:scope {
/* Default style */
@apply text-md rounded-sm;
@apply text-base rounded-sm;

&[data-size='lg'] {
@apply text-lg;
Expand All @@ -73,7 +73,7 @@ Let's create a classic `Button` component accepting two props:
}

&[data-danger] {
@apply bg-red-700 @text-white;
@apply bg-red-700 text-white;
}
}
}
Expand Down

0 comments on commit 7d234f1

Please sign in to comment.