Skip to content

Commit

Permalink
fix: dropdown background
Browse files Browse the repository at this point in the history
  • Loading branch information
wbarbee committed Jan 7, 2025
1 parent 253c19e commit e83c4c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/reusable/dropdown/dropdown.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
font-weight: 400;
white-space: nowrap;

background: var(--kd-color-background-container-default);
background: var(--kd-color-background-forms-default);

[searchable] & {
padding-right: 80px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/reusable/dropdown/dropdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ export class Dropdown extends FormMixin(LitElement) {
/>
`
: html`
<span>
<span class=${this.value === '' ? 'placeholder' : ''}>
${this.multiple
? this.placeholder
: this.value === ''
Expand Down

0 comments on commit e83c4c4

Please sign in to comment.