-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
38 lines (38 loc) · 823 Bytes
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<script setup lang="ts">
// impor i18n composables
const head = useLocaleHead({
addDirAttribute: true,
identifierAttribute: "id",
addSeoAttributes: true
});
</script>
<template>
<div>
<Html :lang="head.htmlAttrs?.lang" :dir="head.htmlAttrs?.dir">
<NuxtLayout>
<NuxtPage />
<AppNotifications />
</NuxtLayout>
</html>
</div>
</template>
<style lang="css">
*:focus {
box-shadow: none !important;
-webkit-tap-highlight-color: transparent;
}
body {
font-family: var(--font-family);
background-color: var(--surface-ground);
color: var(--text-color);
padding: 0;
margin: 0;
min-height: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.content {
max-width: 1441px;
margin: 0 auto;
}
</style>