lint: format

This commit is contained in:
pskfyi 2022-01-05 11:19:51 -08:00 committed by pskfyi
commit 977a598e42
4 changed files with 84 additions and 73 deletions

View file

@ -1,12 +1,8 @@
<template>
<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>
<header>I'm a header. Check this box</header>
<TabNav />
<footer>This is a game jam game.</footer>
</div>
</template>
@ -18,19 +14,18 @@ export default {
<style scoped>
.gridcontainer {
display: grid | inline-grid;
display: grid;
}
header {
grid-row: 1;
grid-row: 1;
}
.gridcenter {
grid-row: 2;
grid-row: 2;
}
footer {
grid-row: 3;
grid-row: 3;
}
</style>