diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-18 11:10:19 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-18 11:10:19 -0600 |
commit | a2a2519e87ac4be2f11dc12a1d2ab3bbbc2b26ba (patch) | |
tree | 4e374fa21fcff3656a0fa94ba0459c0d682406dc /src | |
parent | 69609d8732b67839c5be2a7463d52d8e0e707f6d (diff) | |
download | voidsky-a2a2519e87ac4be2f11dc12a1d2ab3bbbc2b26ba.tar.zst |
Small sizing and spacing tweaks
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/composer/ComposePost.tsx | 2 | ||||
-rw-r--r-- | src/view/com/notifications/FeedItem.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/composer/ComposePost.tsx b/src/view/com/composer/ComposePost.tsx index cdd232fb6..a8b28ca49 100644 --- a/src/view/com/composer/ComposePost.tsx +++ b/src/view/com/composer/ComposePost.tsx @@ -249,6 +249,6 @@ const styles = StyleSheet.create({ textInput: { flex: 1, padding: 5, - fontSize: 18, + fontSize: 21, }, }) diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx index 2ccd0d5b2..c3f2b1cfd 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -124,7 +124,7 @@ export const FeedItem = observer(function FeedItem({ <View style={styles.avis}> {authors.slice(0, MAX_AUTHORS).map(author => ( <Link - style={s.mr2} + style={{marginRight: 3}} key={author.href} href={author.href} title={`@${author.handle}`}> |