Skip to content

Commit

Permalink
update print styles
Browse files Browse the repository at this point in the history
  • Loading branch information
yungcalibri committed Nov 10, 2023
1 parent 5200b8d commit 268a1f9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions pages/resume/components/LineItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const LineItem = (props) => {
{toPresent ? (
<Live />
) : (
<small>
<small style={{textAlign: 'center'}}>
<strong>
<time className="dt-end" dateTime={end}>
{endDisplay || end}
Expand All @@ -29,7 +29,7 @@ const LineItem = (props) => {
</small>
)}
<b className="dotted-line" />
<small>
<small style={{textAlign: 'center'}}>
<strong>
<time className="dt-start" dateTime={start}>
{startDisplay || start}
Expand Down
16 changes: 8 additions & 8 deletions pages/resume/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ const Resume = () => (
<h2>Experience</h2>
<Stack space="var(--s0)" asList>
<LineItem
start="2022"
end="2023"
start="May 2022"
end="Feb 2023"
url="https://tirrel.io/"
mainHeading="Software Engineer at Tirrel Corp."
location={
Expand All @@ -117,8 +117,8 @@ const Resume = () => (
</p>
</LineItem>
<LineItem
start="2021"
end="2022"
start="Jun 2021"
end="Mar 2022"
url="https://shortcut.com/"
mainHeading="Software Engineer II at Shortcut (née Clubhouse)"
location={
Expand All @@ -142,8 +142,8 @@ const Resume = () => (
</p>
</LineItem>
<LineItem
start="2018"
end="2021"
start="Jun 2019"
end="Mar 2021"
url="https://aedit.com/"
mainHeading="Senior Software Engineer at AEDIT"
location={
Expand All @@ -168,8 +168,8 @@ const Resume = () => (
</p>
</LineItem>
<LineItem
start="2015"
end="2018"
start="Oct 2015"
end="Feb 2018"
url="https://xojet.com/"
mainHeading="Software Engineer at XOJet"
location={
Expand Down
5 changes: 5 additions & 0 deletions styles/layouts/print.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,9 @@
text-decoration: none;
color: var(--color-text) !important;
}

em.glow {
text-shadow: none;
text-decoration: underline;
}
}

1 comment on commit 268a1f9

@vercel
Copy link

@vercel vercel bot commented on 268a1f9 Nov 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

acstb – ./

acstb.vercel.app
acstb-yungcalibri.vercel.app
acstb-git-master-yungcalibri.vercel.app

Please sign in to comment.