mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
30 lines
No EOL
564 B
Svelte
30 lines
No EOL
564 B
Svelte
<footer>
|
|
<p>Built by <a target="__blank" href="https://bradleyshellnut.com">Bradley Shellnut</a></p>
|
|
<p>
|
|
<a
|
|
target="__blank"
|
|
href="https://www.flaticon.com/free-icons/board-game"
|
|
title="board game icons">Board game icons created by Freepik - Flaticon</a
|
|
>
|
|
</p>
|
|
</footer>
|
|
|
|
<style lang="postcss">
|
|
footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 40px;
|
|
}
|
|
|
|
footer a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
@media (min-width: 480px) {
|
|
footer {
|
|
padding: 40px 0;
|
|
}
|
|
}
|
|
</style> |