Skip to content

Commit

Permalink
Moved skills section to the top and modified some font styles
Browse files Browse the repository at this point in the history
  • Loading branch information
MohitR1999 committed Dec 1, 2024
1 parent 147e583 commit 42f1c74
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/constants/resume_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
from reportlab.lib import colors

RESUME_ELEMENTS_ORDER = [
'skills',
'experience',
'education',
'projects',
'skills',
'achievements',
'certifications'
]
Expand Down
2 changes: 0 additions & 2 deletions src/data/input.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,10 @@
"React.js",
"React Native",
"Redux",
"Redux Thunk",
"Express",
"Node.js",
"Selenium",
"socket.io",
"cytoscape.js",
"Spring",
"Spring boot"
]
Expand Down
2 changes: 1 addition & 1 deletion src/elements/resume_skill.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def append_element(self, element : str) -> None:
def get_table_element(self, running_row_index : list, table_styles : list) -> list:
table = []
table.append([
Paragraph(f"<font face='Garamond_Semibold'>{self.title}: {", ".join(word for word in self.elements if word)}</font>", bulletText='•', style=JOB_DETAILS_PARAGRAPH_STYLE)
Paragraph(f"<font face='Garamond_Semibold'>{self.title}:</font> {", ".join(word for word in self.elements if word)}", bulletText='•', style=JOB_DETAILS_PARAGRAPH_STYLE)
])
table_styles.append(('TOPPADDING', (0, running_row_index[0]), (1, running_row_index[0]), 1))
table_styles.append(('BOTTOMPADDING', (0, running_row_index[0]), (1, running_row_index[0]), 0))
Expand Down

0 comments on commit 42f1c74

Please sign in to comment.