We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45210c8 commit 8cd4d26Copy full SHA for 8cd4d26
.changeset/strong-files-tan.md
@@ -0,0 +1,5 @@
1
+---
2
+"@ultraviolet/ui": patch
3
4
+
5
+`TagList`: fix container width
packages/ui/src/components/TagList/styles.css.ts
@@ -6,7 +6,10 @@ import { TAGS_GAP } from './constant'
6
7
export const popoverTriggerWidthVar = createVar()
8
9
-const container = style({ display: 'flex' })
+const container = style({
10
+ display: 'flex',
11
+ width: '100% !important', // It should always have a width of 100% for overflow computation
12
+})
13
14
const tagContainer = recipe({
15
base: {
0 commit comments