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

37 lines
459 B
Vue
Raw Normal View History

2022-01-03 23:53:38 +00:00
<template>
2022-01-04 22:41:36 +00:00
<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>
2022-01-03 23:53:38 +00:00
</template>
<script>
export default {
name: 'IndexPage',
}
</script>
2022-01-04 22:41:36 +00:00
<style scoped>
.gridcontainer {
display: grid | inline-grid;
}
header {
grid-row: 1;
}
.gridcenter {
grid-row: 2;
}
footer {
grid-row: 3;
}
</style>