This is a parody of leetcode.com for designers. It's being developed live on Twitch.tv/zedashaw to demonstrate how to make a parody of a website.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
pixelperfectionist/client/Footer.svelte

38 lines
589 B

<script>
const posts = [];
import { support_email } from "$/client/config.js";
</script>
<style>
footer {
display: flex;
min-height: var(--fixed-footer-height);
color: var(--value9);
background-color: var(--value2);
padding: 1rem;
}
footer a {
color: var(--value9);
}
footer > column {
display: flex;
flex-direction: column;
padding: 1rem;
}
footer > column h5 {
margin: 0px;
}
@media only screen and (max-width: 800px) {
footer {
flex-direction: column;
}
}
</style>
<footer>
<h1>Footer</h1>
</footer>