-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
53 lines (44 loc) · 1.25 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<script setup lang="ts">
useSeoMeta({
title: 'Dennis Smuda - web developer based in Germany',
ogTitle: 'Dennis Smuda - web developer based in Germany',
description: 'I write about stuff I learn along the way and post about projects I release. Come find out more about me or my work, maybe get in touch',
ogDescription: 'I write about stuff I learn along the way and post about projects I release. Come find out more about me or my work, maybe get in touch',
ogUrl: 'https://dennissmuda.com',
})
</script>
<template>
<Navbar />
<NuxtPage />
<PageFooter />
</template>
<style lang="css">
html,
body {
@apply dark:bg-black dark:text-white;
}
/* ::view-transition-old(root) {
animation: 90ms cubic-bezier(0.4, 0, 1, 1) both fade-out;
}
::view-transition-new(root) {
animation: 210ms cubic-bezier(0, 0, 0.2, 1) 90ms both fade-in;
} */
::view-transition-old(header),
::view-transition-new(header) {
width: auto;
}
body {
@apply bg-white text-black relative min-h-screen;
@apply dark:bg-black dark:text-white;
@apply transition-colors duration-700 overflow-x-hidden;
}
body::-webkit-scrollbar {
@apply z-50 w-1;
}
/* body::-webkit-scrollbar-track {
@apply bg-gray;
} */
body::-webkit-scrollbar-thumb {
@apply bg-orange outline-orange;
}
</style>