Updated about page
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Thomas Cole 2022-06-03 11:00:28 -04:00
parent 0c09b5c0ae
commit bc273c3300

View File

@ -2,7 +2,7 @@
import BaseLayout from '../layouts/BaseLayout.astro';
import { Markdown } from 'astro/components';
const resumeLink = 'https://git.thomaspcole.com/thomascole/Resume-MD/raw/branch/master/Resume.md';
const resumeLink = 'https://git.thomaspcole.com/thomascole/Resume-MD/raw/branch/master/src/Resume.md';
const response = await fetch(resumeLink);
const data = await response.text();
@ -55,6 +55,15 @@ const data = await response.text();
place-content: center;
}
// Hack to adjust some of the markdown content
#thomaspatrickcolegmailcom--704-771-2453{
font-size: 1em;
}
#work-experience{
margin-top: 8px;
}
@media (max-width: 1024px) {
.md-container{
width: 95%;
@ -70,14 +79,14 @@ const data = await response.text();
<h2 class="card-header-title no-margin">
Resume
</h2>
<a class="card-header-icon" download="ThomasCole-Resume.pdf" href="/Resume.pdf">
<!-- <a class="card-header-icon" download="ThomasCole-Resume.pdf" href="/Resume.pdf">
<span class="icon-text">
<span class="icon">
<i class="fas fa-download" aria-hidden="true"></i>
</span>
<span>Download</span>
</span>
</a>
</a> -->
</header>
<div class="card-content">
<Markdown content={data}/>