Better optgroup text color

This commit is contained in:
Louis Lam
2022-06-15 15:18:14 +08:00
parent 0bd1c42080
commit c170b1edd0
2 changed files with 23 additions and 2 deletions

View File

@@ -34,6 +34,25 @@ textarea.form-control {
}
}
// optgroup
optgroup {
color: #b1b1b1;
option {
color: #212529;
}
}
.dark {
optgroup {
color: #535864;
option {
color: $dark-font-color;
}
}
}
// Scrollbar
::-webkit-scrollbar-thumb {
background: #ccc;
border-radius: 20px;