We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1363b09 commit 0681615Copy full SHA for 0681615
packages/uui-input/lib/uui-input.element.ts
@@ -508,6 +508,7 @@ export class UUIInputElement extends UUIFormControlMixin(
508
display: flex;
509
align-items: center;
510
line-height: 1;
511
+ height: 100%;
512
}
513
514
::slotted(uui-input),
packages/uui-input/lib/uui-input.story.ts
@@ -179,6 +179,14 @@ export const MultipleInputs: Story = {
179
},
180
};
181
182
+export const InputAlignment: Story = {
183
+ render: args =>
184
+ html`<uui-input ${spread(args)}>${renderSlots(args)}</uui-input>–<uui-input
185
+ ${spread(args)}
186
+ >${renderSlots(args)}</uui-input
187
+ >`,
188
+};
189
+
190
export const AutoWidth: Story = {
191
render: args =>
192
html`<uui-input ${spread(args)}></uui-input>
0 commit comments