Move Layout style
This commit is contained in:
parent
dd1c5b7b31
commit
c51593dbc4
2 changed files with 8 additions and 10 deletions
|
@ -192,10 +192,3 @@
|
|||
grid-column: span 4;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.contentDiv {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-bottom: auto;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
import { Footer, NavBar } from "@components/wrapping_objects";
|
||||
import styles from "./util/wrapping_objects.module.css";
|
||||
---
|
||||
|
||||
<!doctype html>
|
||||
|
@ -18,13 +17,19 @@ import styles from "./util/wrapping_objects.module.css";
|
|||
</head>
|
||||
<body>
|
||||
<NavBar />
|
||||
<div class={styles.contentDiv}>
|
||||
<div class="content-div">
|
||||
<slot />
|
||||
</div>
|
||||
<Footer />
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<style>
|
||||
.contentDiv {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-bottom: auto;
|
||||
}
|
||||
</style>
|
||||
<style is:global>
|
||||
@font-face {
|
||||
font-family: "Splatoon";
|
||||
|
|
Loading…
Reference in a new issue