Skip to content

Commit b3320e3

Browse files
leekelleheriOvergaard
authored andcommitted
fix(uui-combobox): Change display to "inline-flex"
1 parent d7aeb38 commit b3320e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/uui-combobox/lib/uui-combobox.element.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ export class UUIComboboxElement extends UUIFormControlMixin(LitElement, '') {
330330
};
331331

332332
#renderInput = () => {
333-
return html` <uui-input
333+
return html`<uui-input
334334
slot="trigger"
335335
id="combobox-input"
336336
label="combobox-input"
@@ -383,7 +383,7 @@ export class UUIComboboxElement extends UUIFormControlMixin(LitElement, '') {
383383

384384
render() {
385385
if (this._isPhone && this.open) {
386-
return html` <div id="phone-wrapper">
386+
return html`<div id="phone-wrapper">
387387
<uui-button label="close" look="primary" @click=${this.#onClose}>
388388
${this.closeLabel}
389389
</uui-button>
@@ -405,7 +405,7 @@ export class UUIComboboxElement extends UUIFormControlMixin(LitElement, '') {
405405
static styles = [
406406
css`
407407
:host {
408-
display: inline-block;
408+
display: inline-flex;
409409
}
410410
411411
#combobox-input {

0 commit comments

Comments
 (0)