Skip to content

Commit

Permalink
fix: border should apply to all aui-root children (#984)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonom authored Oct 13, 2024
1 parent 3b7dadb commit dba0082
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/late-pots-bow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@assistant-ui/react": patch
---

fix: border should apply to all aui-root children
6 changes: 5 additions & 1 deletion packages/react/src/styles/tailwindcss/base-components.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
.aui-root {
@apply text-aui-foreground border-aui-border;
@apply text-aui-foreground bg-aui-background;
}

.aui-root * {
@apply border-aui-border;
}

/* shadcn-ui/button */
Expand Down

0 comments on commit dba0082

Please sign in to comment.