consistent font size

This commit is contained in:
eggy 2024-06-13 23:37:18 -04:00
parent af0f13008a
commit bfca633917

11
lib.typ
View File

@ -70,9 +70,8 @@
} }
cv_entry(left_content: { cv_entry(left_content: {
set par(justify: true) set par(justify: true)
text(1.1em)[*#company* | _#role _] text[*#company* | _#role _]
}, right_content: { }, right_content: {
set text(size: 1.1em)
[#start_date -- #end_date] [#start_date -- #end_date]
// if location != none { // if location != none {
// format_location(location) // format_location(location)
@ -84,17 +83,17 @@
set strong(delta: DEFAULT_STRONG) set strong(delta: DEFAULT_STRONG)
let text_link = if demo_link != none { demo_link } else { repo_link } let text_link = if demo_link != none { demo_link } else { repo_link }
if text_link != none { if text_link != none {
link(text_link)[#text(1.1em)[*#title*]] link(text_link)[#text[*#title*]]
} else { } else {
text(1.1em)[*#title*] text[*#title*]
} }
if demo_link != none { if demo_link != none {
link(demo_link)[#text(1.1em)[ #fa(link-icon) ]] link(demo_link)[ #fa(link-icon) ]
} }
if repo_link != none { if repo_link != none {
link(repo_link)[#text(1.1em)[ #fa(github) ]] link(repo_link)[ #fa(github) ]
} }
[ | _ #tools _ ] [ | _ #tools _ ]
} }