mirror of
https://github.com/JonasunderscoreJones/wiki.jonasjones.dev.git
synced 2025-10-22 22:09:17 +02:00
Fixed an issue where the footer text would wrap in a wrong way on smaller screens and not be aligned correctly.
67 lines
975 B
Svelte
67 lines
975 B
Svelte
<script>
|
|
import "$lib/styles/style.css";
|
|
</script>
|
|
|
|
<!-- Footer.svelte -->
|
|
<footer>
|
|
<div class="footer-flex">
|
|
<a href="/">Home</a>
|
|
<nav>
|
|
<ul>
|
|
<li>
|
|
<a href="https://jonasjones.dev/">Homepage</a>
|
|
</li>
|
|
<li>
|
|
<a href="/about">About</a>
|
|
</li>
|
|
<li>
|
|
<a href="/contact">Contact</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
<div class="footer">
|
|
<p>Website by Jonas_Jones 2021 - 2023</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<style>
|
|
footer {
|
|
padding: 1rem;
|
|
margin: 2rem;
|
|
margin-bottom: 2rem;
|
|
margin-top: 0;
|
|
background: var(--container-background-color);
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.footer-flex {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
ul {
|
|
margin: 0;
|
|
list-style-type: none;
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
.footer {
|
|
font-size: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
@media (max-width: 550px) {
|
|
footer {
|
|
margin: 0;
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
</style>
|