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;
|
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 { 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";
|
||||||
|
|
Loading…
Reference in a new issue