diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-03 12:05:38 -0800 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-03-03 12:05:38 -0800 |
commit | b1fa1b633f732080ef1e2662274719810e35b8d5 (patch) | |
tree | 60b9c532bc6444a370210215bcd44b51e7c9956e | |
parent | fd9d6327b455eb47993ca9113da543c66e94c843 (diff) | |
download | voidsky-b1fa1b633f732080ef1e2662274719810e35b8d5.tar.zst |
Fix dark mode ellipsis on posts
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index a95d91795..4e14a84b7 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -171,7 +171,7 @@ export const PostThreadItem = observer(function PostThreadItem({ <FontAwesomeIcon icon="ellipsis-h" size={14} - style={[s.mt2, s.mr5]} + style={[s.mt2, s.mr5, pal.textLight]} /> </PostDropdownBtn> </View> |