lint: format
This commit is contained in:
parent
2b4ab9c6ea
commit
977a598e42
4 changed files with 84 additions and 73 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Reference in a new issue