diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-09-28 10:32:34 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-09-28 10:32:34 -0700 |
commit | d57c8f7bca2afdac526fdd4ada4a297908ed02e9 (patch) | |
tree | 651fce470df7984c91d49963ec2b1e966bb6a9f3 | |
parent | 1aa1b69a94d3a88497c3f812b1a2d70c0e389775 (diff) | |
download | voidsky-d57c8f7bca2afdac526fdd4ada4a297908ed02e9.tar.zst |
Fix pointer
-rw-r--r-- | src/view/com/notifications/FeedItem.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx index ff5ec9f50..c51335c72 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -241,7 +241,9 @@ export const FeedItem = observer(function FeedItemImpl({ <Text style={[pal.text]}> {action}</Text> <TimeElapsed timestamp={item.indexedAt}> {({timeElapsed}) => ( - <Text style={[pal.textLight]} title={niceDate(item.indexedAt)}> + <Text + style={[pal.textLight, styles.pointer]} + title={niceDate(item.indexedAt)}> {' ' + timeElapsed} </Text> )} @@ -448,6 +450,10 @@ const styles = StyleSheet.create({ overflowHidden: { overflow: 'hidden', }, + pointer: { + // @ts-ignore web only + cursor: 'pointer', + }, outer: { padding: 10, |