This repository has been archived on 2024-03-13. You can view files and clone it, but cannot push or open issues or pull requests.
timekeeper/pages/index.vue

32 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>