Skip to content

Commit

Permalink
chore(ui): amended color on number input on settings page (#3930)
Browse files Browse the repository at this point in the history
  • Loading branch information
MilosPaunovic authored Jun 5, 2024
1 parent 9b1e789 commit 001cc6a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions ui/src/styles/layout/element-plus-overload.scss
Original file line number Diff line number Diff line change
Expand Up @@ -203,11 +203,17 @@
}

.el-input-number__increase, .el-input-number__decrease {
background: var(--bs-gray-600);
background: var(--bs-white);

html.dark & {
background: var(--bs-gray-600);
}
}

.el-input-number__increase:hover, .el-input-number__decrease:hover {
color: var(--bs-white);
html.dark & {
color: var(--bs-gray-700);
}
}

.el-input-file {
Expand Down

0 comments on commit 001cc6a

Please sign in to comment.