mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 12:24:38 +03:00
Style fixes
This commit is contained in:
@@ -324,9 +324,13 @@ const SelectComponent: React.FC<ISelectProps & ITypeProps> = ({
|
||||
}] : items;
|
||||
|
||||
const styles = {
|
||||
option: (provided:CSSProperties) => ({
|
||||
...provided,
|
||||
option: (base:CSSProperties) => ({
|
||||
...base,
|
||||
color: "#000"
|
||||
}),
|
||||
container: (base:CSSProperties, state:any) => ({
|
||||
...base,
|
||||
zIndex: state.isFocused ? 10 : base.zIndex
|
||||
})
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user