diff options
author | Eric Bailey <git@esb.lol> | 2025-06-18 11:34:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-18 11:34:52 -0500 |
commit | 066fd8cbf9ce021c46e6a8ea84c60b509a98dae2 (patch) | |
tree | 50245b65dac98fae51ff85752066e80a85c12b06 /src | |
parent | 06ebd2964ab68aa295f3385c188f40c33e3e0a23 (diff) | |
download | voidsky-066fd8cbf9ce021c46e6a8ea84c60b509a98dae2.tar.zst |
Fix select text color if system theme mismatches app theme (#8523)
Diffstat (limited to 'src')
-rw-r--r-- | src/components/Select/index.web.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/Select/index.web.tsx b/src/components/Select/index.web.tsx index 0e6fa85ca..0de74c562 100644 --- a/src/components/Select/index.web.tsx +++ b/src/components/Select/index.web.tsx @@ -244,6 +244,7 @@ export function Item({ref, value, style, children}: ItemProps) { onFocus={onFocus} onBlur={onBlur} style={flatten([ + t.atoms.text, a.relative, a.flex, {minHeight: 25, paddingLeft: 30, paddingRight: 35}, |