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

31 lines
409 B
Vue
Raw Normal View History

2022-01-03 18:53:38 -05:00
<template>
2022-01-04 17:41:36 -05:00
<div class="gridcontainer container mx-auto bg-red-500">
2022-01-05 11:19:51 -08:00
<header>I'm a header. Check this box</header>
<TabNav />
<footer>This is a game jam game.</footer>
2022-01-04 17:41:36 -05:00
</div>
2022-01-03 18:53:38 -05:00
</template>
<script>
export default {
name: 'IndexPage',
}
</script>
2022-01-04 17:41:36 -05:00
<style scoped>
.gridcontainer {
2022-01-05 11:19:51 -08:00
display: grid;
2022-01-04 17:41:36 -05:00
}
header {
2022-01-05 11:19:51 -08:00
grid-row: 1;
2022-01-04 17:41:36 -05:00
}
.gridcenter {
2022-01-05 11:19:51 -08:00
grid-row: 2;
2022-01-04 17:41:36 -05:00
}
footer {
2022-01-05 11:19:51 -08:00
grid-row: 3;
2022-01-04 17:41:36 -05:00
}
</style>