Skip to content

Commit 65fc63d

Browse files
committed
frontend: fix background color of the dropdown button on mobile
In darkmode the dropdown button was shown in white, should have same color as the input field which is dark in darkmode.
1 parent 20f121e commit 65fc63d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontends/web/src/components/forms/input-with-dropdown.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ input.inputField::placeholder {
113113

114114
.dropdownTrigger {
115115
align-items: center;
116-
background-color: #fff;
116+
background-color: var(--background-secondary);
117117
border: 1px solid var(--background-quaternary);
118118
border-left: hidden;
119119
display: flex;

0 commit comments

Comments
 (0)