diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-18 11:15:40 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-18 11:15:40 -0600 |
commit | 77580ab6a4df8e233e5b1a9b166eebbca9bdc80f (patch) | |
tree | 964991f62d70de001c2f7ba08c0a6c135181bc3b /src/view/screens/Log.tsx | |
parent | df4acbd683fb66c469c25915e875a8bcd2d83971 (diff) | |
download | voidsky-77580ab6a4df8e233e5b1a9b166eebbca9bdc80f.tar.zst |
Rework all typography
Diffstat (limited to 'src/view/screens/Log.tsx')
-rw-r--r-- | src/view/screens/Log.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/view/screens/Log.tsx b/src/view/screens/Log.tsx index 86c5e50e2..43036b014 100644 --- a/src/view/screens/Log.tsx +++ b/src/view/screens/Log.tsx @@ -49,7 +49,7 @@ export const Log = observer(function Log({navIdx, visible}: ScreenParams) { ) : ( <FontAwesomeIcon icon="exclamation" style={s.red3} /> )} - <Text type="body2" style={[styles.summary, pal.text]}> + <Text type="sm" style={[styles.summary, pal.text]}> {entry.summary} </Text> {!!entry.details ? ( @@ -60,14 +60,14 @@ export const Log = observer(function Log({navIdx, visible}: ScreenParams) { style={s.mr5} /> ) : undefined} - <Text type="body2" style={[styles.ts, pal.textLight]}> + <Text type="sm" style={[styles.ts, pal.textLight]}> {entry.ts ? ago(entry.ts) : ''} </Text> </TouchableOpacity> {expanded.includes(entry.id) ? ( <View style={[pal.view, s.pl10, s.pr10, s.pb10]}> <View style={[pal.btn, styles.details]}> - <Text type="mono1" style={pal.text}> + <Text type="mono" style={pal.text}> {entry.details} </Text> </View> |