Nuxt Content 3 migration #12

Merged
eggy merged 81 commits from js into master 2022-08-10 18:38:39 -04:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 3697690c31 - Show all commits

View File

@ -1,11 +1,11 @@
<template>
<Teleport to="body"> <a href="#" class="go-top"></a></Teleport>
<Teleport to="body"> <a href="#" class="go-top" /></Teleport>
</template>
<style>
body {
display: grid;
grid-template-columns: auto 0;
grid-template-columns: 0 auto;
}
</style>
@ -14,7 +14,7 @@ body {
--offset: 20rem;
position: sticky;
bottom: 1rem;
margin-right: 1rem;
left: 1rem;
place-self: end;
margin-top: calc(100vh + var(--offset));

View File

@ -6,7 +6,6 @@ useTitle("Home");
</script>
<template>
<ButtonToTop />
<main class="flex flex-col items-center justify-around gap-8">
<h1>Welcome!</h1>
<p>What are you here to see?</p>
@ -20,6 +19,7 @@ useTitle("Home");
<Services />
<About />
</main>
<ButtonToTop />
</template>
<style scoped>