I've been using streamlit
for a while, but still can't figure out how to change the background color of a multiselect tag. Is there any way to work around this property?
What I've tried is to inspect the elements, but found nothing to imrpove.
/* change the select box properties */
div[data-baseweb="select"]>div {
background-color:#fff;
border-color:rgb(194, 189, 189);
width: 50%;
}
/* change the tag font properties */
span[data-baseweb="tag"]>span {
color: black;
font-size: 17px;
/* background-color:#fff; */ /* only turns part of the tag white */
}