about summary refs log tree commit diff
path: root/src/components/Select
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2025-06-18 11:34:52 -0500
committerGitHub <noreply@github.com>2025-06-18 11:34:52 -0500
commit066fd8cbf9ce021c46e6a8ea84c60b509a98dae2 (patch)
tree50245b65dac98fae51ff85752066e80a85c12b06 /src/components/Select
parent06ebd2964ab68aa295f3385c188f40c33e3e0a23 (diff)
downloadvoidsky-066fd8cbf9ce021c46e6a8ea84c60b509a98dae2.tar.zst
Fix select text color if system theme mismatches app theme (#8523)
Diffstat (limited to 'src/components/Select')
-rw-r--r--src/components/Select/index.web.tsx1
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},