Move Layout style

This commit is contained in:
Aron Malcher 2023-11-09 14:02:20 +01:00
parent dd1c5b7b31
commit c51593dbc4
Signed by: aronmal
GPG key ID: 816B7707426FC612
2 changed files with 8 additions and 10 deletions

View file

@ -192,10 +192,3 @@
grid-column: span 4; grid-column: span 4;
} }
} }
.contentDiv {
display: flex;
flex-direction: column;
margin-bottom: auto;
}

View file

@ -1,6 +1,5 @@
--- ---
import { Footer, NavBar } from "@components/wrapping_objects"; import { Footer, NavBar } from "@components/wrapping_objects";
import styles from "./util/wrapping_objects.module.css";
--- ---
<!doctype html> <!doctype html>
@ -18,13 +17,19 @@ import styles from "./util/wrapping_objects.module.css";
</head> </head>
<body> <body>
<NavBar /> <NavBar />
<div class={styles.contentDiv}> <div class="content-div">
<slot /> <slot />
</div> </div>
<Footer /> <Footer />
</body> </body>
</html> </html>
<style>
.contentDiv {
display: flex;
flex-direction: column;
margin-bottom: auto;
}
</style>
<style is:global> <style is:global>
@font-face { @font-face {
font-family: "Splatoon"; font-family: "Splatoon";