This repository has been archived on 2024-03-13. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
timekeeper/pages/index.vue
2022-01-06 01:27:38 -08:00

31 lines
409 B
Vue

<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>
</div>
</template>
<script>
export default {
name: 'IndexPage',
}
</script>
<style scoped>
.gridcontainer {
display: grid;
}
header {
grid-row: 1;
}
.gridcenter {
grid-row: 2;
}
footer {
grid-row: 3;
}
</style>