Skip to content

Commit

Permalink
Add pausly and melodle to footer
Browse files Browse the repository at this point in the history
  • Loading branch information
enyo committed Nov 17, 2022
1 parent 33b69ba commit 8666d4a
Showing 1 changed file with 27 additions and 4 deletions.
31 changes: 27 additions & 4 deletions src/lib/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,21 @@
</li>
</ul>
</div>
<div class="projects">
<h3>Other projects</h3>
<ul>
<li>
<a href="https://www.pausly.app/">Pausly</a><br />
<small
>Take short (stretch) breaks with your friends and colleagues.</small
>
</li>
<li>
<a href="https://melodle.yesmeno.com">Melodle</a><br />
<small>Like wordle, but for music.</small>
</li>
</ul>
</div>
</nav>
</footer>

Expand Down Expand Up @@ -68,17 +83,25 @@
font-size: 0.875rem;
display: grid;
gap: 1.5rem;
line-height: 2;
line-height: 1.5;
grid-template-columns: repeat(2, 1fr);
grid-template-areas:
'home home'
'js social';
'home home'
'js social'
'projects projects';
}
nav small {
line-height: 1.2;
display: inline-block;
}
nav li {
margin: 0.5rem 0;
}
@media (min-width: 800px) {
nav {
grid-template-columns: repeat(5, 1fr);
grid-template-areas: 'home js social';
grid-template-areas: 'home js social projects';
}
}
.dropzone-home {
Expand Down

0 comments on commit 8666d4a

Please sign in to comment.