aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/App.vue b/src/App.vue
index 88ad076..8c80550 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,13 +1,9 @@
<template>
- <v-app>
+ <v-app :style="bg">
<v-main>
- <v-app-bar>
- <template v-slot:prepend>
- <v-app-bar-nav-icon></v-app-bar-nav-icon>
- </template>
- <v-app-bar-title>Otonashi</v-app-bar-title>
- </v-app-bar>
- <MainPage />
+ <v-container>
+ <MainPage class="float-end w-50" />
+ </v-container>
</v-main>
</v-app>
</template>
@@ -23,7 +19,11 @@ export default {
},
data: () => ({
- //
+ bg: {
+ backgroundColor: "grey",
+ // backgroundImage: "url(https://wallpapercave.com/wp/wp9649930.jpg)",
+ backgroundPosition: "center",
+ },
}),
};
</script>