Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
<Projects projects={data.projects}/>
</section>
<div class="stretch-bottom">
<div class="two-col border-top border-bottom print-margin">
<div class="print-margin">
<section>
<Interests interests={data.interests}/>
</section>
<div class="v-line"/>
<!-- <div class="v-line"/> -->
<section>
<References references={data.references}/>
</section>
Expand Down Expand Up @@ -78,6 +78,11 @@

section {
padding: 1em;
padding-bottom: 2em;
}

.two-col section {
padding-bottom: 1em;
}

.media-only {
Expand Down
15 changes: 6 additions & 9 deletions src/lib/About.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,20 @@
</script>

<div class="about">
<div class="profile-img">
<!-- <div class="profile-img">
<ProfileImg/>
</div>
</div> -->
<p>{summary}</p>
</div>

<style>
.about {
padding: 0.5em 2em 1em;
}

.profile-img {
display: none;
}
/* .profile-img {
display: none;
} */

@media screen and (max-width: 892px) {
.about {
padding: 0.5em 2em 1em;
display: flex;
flex-direction: row;
justify-content: center;
Expand Down
6 changes: 3 additions & 3 deletions src/lib/Contact.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
<div>{profile.city}</div>
</div>
<div class="info-line">
<CheckmarkFilled size={24} class="icon no-print"/>
<CheckmarkFilled size={16} class="print-only"/>
<div>Eligible to work in CA</div>
<!-- <CheckmarkFilled size={24} class="icon no-print"/>
<CheckmarkFilled size={16} class="print-only"/> -->
<!-- <div>Eligible to work in CA</div> -->
</div>

<style>
Expand Down
8 changes: 4 additions & 4 deletions src/lib/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
</script>

<header>
<div class="profile-img">
<!-- <div class="profile-img">
<ProfileImg/>
</div>
</div> -->
<div class="header-info-container">
<div>
<div class="header-title">
Expand All @@ -24,9 +24,9 @@

<style>
header {
display: grid;
/* display: grid;
grid-template-columns: var(--profile-img-height) 1fr;
gap: 1em;
gap: 1em; */
margin-bottom: 1em;
}

Expand Down
2 changes: 0 additions & 2 deletions src/lib/Portfolio.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,5 @@
display: flex;
flex-direction: row;
gap: 1.5em;
justify-content: center;
align-items: center;
}
</style>
8 changes: 4 additions & 4 deletions src/lib/References.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@

<h2>References</h2>
<div class="references-container">
{#if import.meta.env.DEV}
<!-- {#if import.meta.env.DEV}
{#each references as reference}
<div class="reference">
<div class="bold">{reference.name}</div>
<div>{reference.position}, {reference.company}</div>
<div>{reference.email}</div>
</div>
{/each}
{:else}
<div>contact provided upon request</div>
{/if}
{:else} -->
<div>provided upon request</div>
<!-- {/if} -->
</div>

<style>
Expand Down
Loading