Skip to content

Commit 5dc95a6

Browse files
committed
Move education to right col
1 parent e46ce31 commit 5dc95a6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

workspaces/resume/src/components/resume/Resume.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ const Resume = ({
121121
)}
122122
/>
123123
))}
124+
</View>
124125

125-
<View style={styles.horizontalDivider} />
126-
126+
<View style={styles.layoutRight}>
127127
<Text style={styles.title}>Education</Text>
128128
<View>
129129
{educations.map((education, index) => (
@@ -134,7 +134,7 @@ const Resume = ({
134134
education.endDate,
135135
YEAR_DATE_FORMAT,
136136
)}
137-
title={`${education.degree} in ${education.areaOfStudy}`}
137+
title={`${education.degree}\nin ${education.areaOfStudy}`}
138138
subtitle={education.school}
139139
style={getItemMarginStyle(
140140
styles.itemMarginBottom,
@@ -144,9 +144,9 @@ const Resume = ({
144144
/>
145145
))}
146146
</View>
147-
</View>
148147

149-
<View style={styles.layoutRight}>
148+
<View style={styles.horizontalDivider} />
149+
150150
<Text style={styles.title}>Skills</Text>
151151
<View style={styles.skills}>
152152
<View style={styles.skillsCol}>

0 commit comments

Comments
 (0)