diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-21 13:03:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-21 13:03:25 -0500 |
commit | 08d513e8c1ce67aa2400b14a81d3e44399579f8d (patch) | |
tree | c40adb36eeebc3f29417523ca42ed0ce51af4d0a | |
parent | 858d4c8c8811ca8e16bffe3bfe0d541e576177ec (diff) | |
download | voidsky-08d513e8c1ce67aa2400b14a81d3e44399579f8d.tar.zst |
Fix default-banner sizing & positioning (#336)
-rw-r--r-- | src/view/com/util/UserBanner.tsx | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/view/com/util/UserBanner.tsx b/src/view/com/util/UserBanner.tsx index 400d8ac34..847ef6dba 100644 --- a/src/view/com/util/UserBanner.tsx +++ b/src/view/com/util/UserBanner.tsx @@ -82,12 +82,6 @@ export function UserBanner({ }, ] - const renderSvg = () => ( - <Svg width="100%" height="150" viewBox="0 0 400 150"> - <Rect x="0" y="0" width="400" height="150" fill="#0070ff" /> - </Svg> - ) - // setUserBanner is only passed as prop on the EditProfile component return onSelectNewBanner ? ( <DropdownButton @@ -118,7 +112,7 @@ export function UserBanner({ source={{uri: banner}} /> ) : ( - renderSvg() + <View style={[styles.bannerImage, styles.defaultBanner]} /> ) } @@ -138,4 +132,7 @@ const styles = StyleSheet.create({ width: '100%', height: 150, }, + defaultBanner: { + backgroundColor: '#0070ff', + }, }) |