diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-11-23 16:20:24 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-23 16:20:24 -0800 |
commit | 32bf8122e8c8a0fbadd53b8a015cfbc9014519a2 (patch) | |
tree | 55bd24596e6fadadbf4326b26e3d14e418c5c7bb /src/view/com/util/LoadingPlaceholder.tsx | |
parent | 523d1f01a51c0e85e49916fb42b204f7004ffac1 (diff) | |
parent | b4d07c4112b9a62b5380948051aa4a7fd391a2d4 (diff) | |
download | voidsky-32bf8122e8c8a0fbadd53b8a015cfbc9014519a2.tar.zst |
Merge branch 'main' into main
Diffstat (limited to 'src/view/com/util/LoadingPlaceholder.tsx')
-rw-r--r-- | src/view/com/util/LoadingPlaceholder.tsx | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/view/com/util/LoadingPlaceholder.tsx b/src/view/com/util/LoadingPlaceholder.tsx index 6620eb8e2..25ce460d4 100644 --- a/src/view/com/util/LoadingPlaceholder.tsx +++ b/src/view/com/util/LoadingPlaceholder.tsx @@ -1,4 +1,3 @@ -import React from 'react' import { DimensionValue, StyleProp, @@ -140,7 +139,7 @@ export function NotificationLoadingPlaceholder({ const pal = usePalette('default') return ( <View style={[styles.notification, pal.view, style]}> - <View style={[{width: 70}, a.align_end, a.pr_sm, a.pt_2xs]}> + <View style={[{width: 60}, a.align_end, a.pr_sm, a.pt_2xs]}> <HeartIconFilled size="xl" style={{color: pal.colors.backgroundLight}} @@ -149,8 +148,8 @@ export function NotificationLoadingPlaceholder({ <View style={{flex: 1}}> <View style={[a.flex_row, s.mb10]}> <LoadingPlaceholder - width={30} - height={30} + width={35} + height={35} style={styles.smallAvatar} /> </View> @@ -310,7 +309,7 @@ const styles = StyleSheet.create({ padding: 5, }, avatar: { - borderRadius: 26, + borderRadius: 999, marginRight: 10, marginLeft: 8, }, @@ -324,11 +323,11 @@ const styles = StyleSheet.create({ margin: 1, }, profileCardAvi: { - borderRadius: 20, + borderRadius: 999, marginRight: 10, }, smallAvatar: { - borderRadius: 15, + borderRadius: 999, marginRight: 10, }, }) |