feat: add back to top, services, about

This commit is contained in:
2022-08-09 19:13:22 -04:00
parent 3c7d81fd36
commit 58131e5a3e
15 changed files with 327 additions and 20 deletions

View File

@@ -25,6 +25,7 @@ useHead({ title: "Eggworld" });
</p>
</footer>
</div>
<ButtonToTop />
</template>
<style>
@@ -34,6 +35,7 @@ html {
transition: color 0.2s ease, background 0.2s ease;
overflow-x: hidden;
overflow-y: scroll;
scroll-behavior: smooth;
}
html.dark {
@@ -74,6 +76,12 @@ html.dark footer {
--footer-drop-color: black;
}
div#__nuxt {
/* we need an element with only one child */
display: grid;
grid-template-columns: auto 0px;
}
@media screen and (max-width: 600px) {
main {
width: 90%;