mirror of
https://github.com/muerwre/muerwre.github.io.git
synced 2025-04-24 18:36:41 +07:00
fixed mobile layouts
This commit is contained in:
parent
7eeb3b14c6
commit
5e9e2c308d
6 changed files with 43 additions and 18 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue