We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ee85ca commit 037c101Copy full SHA for 037c101
1 file changed
src/v2/components/forms/select/Select.ts
@@ -54,7 +54,10 @@ export class Select extends LitElement {
54
css`
55
:host {
56
/* default theme */
57
- display: inline-block;
+ display: block;
58
+ width: 100%;
59
+ min-width: 0;
60
+ max-width: 100%;
61
position: relative;
62
z-index: var(--select-z-index, 400);
63
box-sizing: border-box;
@@ -86,7 +89,10 @@ export class Select extends LitElement {
86
89
}
87
90
88
91
:host([theme='dark']) {
92
93
94
95
96
97
z-index: var(--select-z-index, 900);
98
0 commit comments