Skip to content

Commit

Permalink
🐛 fix filled select background color
Browse files Browse the repository at this point in the history
  • Loading branch information
lerte committed Oct 31, 2024
1 parent d5aaf17 commit 970b9bb
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
display: inline-flex;
justify-content: center;
flex-direction: column;
--_container-color: var(
--md-filled-field-container-color,
rgb(var(--md-sys-color-surface-container-highest))
);
--_active-indicator-color: var(
--md-filled-field-active-indicator-color,
rgb(var(--md-sys-color-on-surface-variant))
Expand Down Expand Up @@ -99,7 +103,7 @@
inset: 0;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
background: rgb(59 52 42);
background: var(--_container-color);
}

.state-layer {
Expand Down

0 comments on commit 970b9bb

Please sign in to comment.