Skip to content

Commit

Permalink
Small tweaks to home page and footer
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbysebolao committed Nov 26, 2021
1 parent d744495 commit d694f80
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/lib/footer/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</a>
</div>
<p class="credit">
<sub style="opacity: 0.5;">Powered by SvelteKit</sub>
<sub style="opacity: 0.5;">Powered by Svelte</sub>
</p>
</footer>

Expand Down
1 change: 1 addition & 0 deletions src/lib/home/ProjectSummary.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
}
.project-description {
box-sizing: border-box;
display: flex;
flex-direction: column;
position: absolute;
Expand Down
9 changes: 4 additions & 5 deletions src/routes/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -62,22 +62,22 @@
</p>

<Aliens
active_display_modes={active_display_modes.join(" ")}
display_mode_classes={active_display_modes.join(" ")}
alienCount={3}
alienType="default"
/>

<hr class="home-separators {active_display_modes.join(' ')}" />

<h2>Web Projects</h2>
<!-- <h2>Web Projects</h2> -->

{#each projects_data as d, i}
<ProjectSummary
colour={active_display_modes.includes("night") ? "night" : COLOURS[i]}
projectData={d}
/>
<Aliens
active_display_modes={active_display_modes.join(" ")}
display_mode_classes={active_display_modes.join(" ")}
alienCount={3}
alienType="alien{i}"
/>
Expand Down Expand Up @@ -115,8 +115,7 @@
}
.home-separators {
display: block;
margin-top: 5em;
margin: 2.5em 0 5em 0;
&.night {
border: 1px solid var(--night-text-color);
}
Expand Down

0 comments on commit d694f80

Please sign in to comment.