Some layout progress.

This commit is contained in:
John McCardle 2022-01-04 17:41:36 -05:00
commit 2b4ab9c6ea
4 changed files with 187 additions and 1 deletions

View file

@ -1,5 +1,13 @@
<template>
<Tutorial />
<div class="gridcontainer container mx-auto bg-red-500">
<header>
I'm a header. Check this box
</header>
<TabNav/>
<footer>
This is a game jam game.
</footer>
</div>
</template>
<script>
@ -7,3 +15,22 @@ export default {
name: 'IndexPage',
}
</script>
<style scoped>
.gridcontainer {
display: grid | inline-grid;
}
header {
grid-row: 1;
}
.gridcenter {
grid-row: 2;
}
footer {
grid-row: 3;
}
</style>