Skip to content

Commit

Permalink
fix promotion
Browse files Browse the repository at this point in the history
  • Loading branch information
alstat committed Jul 27, 2023
1 parent f753b94 commit 5824b28
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 10 deletions.
8 changes: 8 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,8 @@
"vite": "^4.4.2",
"vitest": "^0.32.2"
},
"type": "module"
"type": "module",
"dependencies": {
"svg-gauge": "^1.0.7"
}
}
17 changes: 8 additions & 9 deletions src/routes/resume/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
</tbody>
</table>
<br>
<br>
<div class="title-emphasis">Education</div><br>
<table>
<tbody>
Expand All @@ -90,9 +91,7 @@
<td>
{ school["schoolYear"] }: <br>
<b><span class="emphasis"> { school["degree"] } </span></b><br>
<a href={ school["href"] }>
{ school["school"] }
</a>,
<a href={ school["href"] }>{ school["school"] }</a>,
{ school["university"] }<br>
{ school["address"] }<br><br>
</td>
Expand Down Expand Up @@ -124,26 +123,26 @@
}
.vertical-line {
position:absolute;
margin-top: -105px;
margin-top: -100px;
margin-left: 66px;
border-left: 1px solid #9400f7;
height: 145px;
height: 135px;
z-index: -1;
}
.dots {
height: 5px;
width: 5px;
height: 4px;
width: 4px;
background-color: #6e01b7;
border-radius: 50%;
}
.top {
position:absolute;
margin-top: -108px;
margin-left: 64px;
margin-left: 64.5px;
}
.below {
position:absolute;
margin-top: 39px;
margin-left: 64px;
margin-left: 64.5px;
}
</style>

0 comments on commit 5824b28

Please sign in to comment.