Skip to content

Commit

Permalink
Swap title <-> organization in resume
Browse files Browse the repository at this point in the history
  • Loading branch information
Jwiggiff committed Jan 24, 2024
1 parent e119f15 commit 925b292
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/resume.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,18 +113,18 @@ function Resume() {
</a>
)}
<div>
{job.organization && (
{job.title && (
<>
<div className="firstRow">
<a href={job.url} target="_blank" className="company">
{job.organization}
<a href={job.url} target="_blank" className="title">
{job.title}
</a>
<span className="location">{job.location}</span>
</div>
</>
)}
<div className="secondRow">
<span className="title">{job.title}</span>
<span className="company">{job.organization}</span>
<span className="date">{job.date}</span>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/sass/resume.scss
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ p.subtext {
display: grid;
grid-template-columns: 1fr auto;

.company {
.title {
width: max-content;
font-weight: bold;
text-decoration: none;
Expand All @@ -156,7 +156,7 @@ p.subtext {
font-size: 0.9em;
font-style: italic;

.title {
.company {
float: left;
}
.date {
Expand Down

0 comments on commit 925b292

Please sign in to comment.