aboutsummaryrefslogtreecommitdiff
path: root/src/components/profile/UniversityIcon.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-01-21 16:11:00 -0500
committerIvan Chen <ivan@tagg.id>2021-01-21 16:11:00 -0500
commit238bc768a1610b558263b449b2938e1244450b92 (patch)
tree4a79cd888b5dfc1c89fa55ce83c6899ae89a34fa /src/components/profile/UniversityIcon.tsx
parent8ed0b76529d4f176c89ad12330c909fef22697c8 (diff)
updated profile header styling
Diffstat (limited to 'src/components/profile/UniversityIcon.tsx')
-rw-r--r--src/components/profile/UniversityIcon.tsx7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/components/profile/UniversityIcon.tsx b/src/components/profile/UniversityIcon.tsx
index 13586359..a901998f 100644
--- a/src/components/profile/UniversityIcon.tsx
+++ b/src/components/profile/UniversityIcon.tsx
@@ -38,19 +38,22 @@ const UniversityIcon: React.FC<UniversityIconProps> = ({
const styles = StyleSheet.create({
container: {
- flex: 1,
flexDirection: 'column',
flexWrap: 'wrap',
justifyContent: 'center',
+ alignItems: 'center',
+ height: '100%',
},
univClass: {
fontSize: 13,
fontWeight: '500',
},
icon: {
- alignSelf: 'center',
+ // alignSelf: 'center',
+ // width: '5%',
width: 17,
height: 19,
+ // aspectRatio: 17 / 19,
},
});