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
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">
2022-01-05 19:19:51 +00:00
<header>I'm a header. Check this box</header>
<TabNav />
<footer>This is a game jam game.</footer>
2022-01-04 22:41:36 +00:00
</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 {
2022-01-05 19:19:51 +00:00
display: grid;
2022-01-04 22:41:36 +00:00
}
header {
2022-01-05 19:19:51 +00:00
grid-row: 1;
2022-01-04 22:41:36 +00:00
}
.gridcenter {
2022-01-05 19:19:51 +00:00
grid-row: 2;
2022-01-04 22:41:36 +00:00
}
footer {
2022-01-05 19:19:51 +00:00
grid-row: 3;
2022-01-04 22:41:36 +00:00
}
</style>