fixed mobile layouts

This commit is contained in:
Fedor Katurov 2022-11-10 14:45:38 +06:00
parent 7eeb3b14c6
commit 5e9e2c308d
6 changed files with 43 additions and 18 deletions

View file

@ -1,5 +1,5 @@
<template>
<main>
<main :class="$style.content">
<ContentDoc>
<template v-slot="{ doc }">
<h1>{{ doc.title }}</h1>
@ -28,3 +28,11 @@ export default {
scrollToTop: true,
};
</script>
<style lang="scss" module>
@import "@/assets/css/mixins";
.content {
@include container;
}
</style>

View file

@ -14,7 +14,16 @@
</article>
</template>
<script lang="ts" setup>
<script lang="ts">
export default {
scrollToTop: true,
head() {
return {
title: "About Me",
};
},
};
definePageMeta({ layout: "landing" });
</script>