-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
57 lines (51 loc) · 1.16 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
54
55
56
57
<template>
<div class="main">
<NuxtRouteAnnouncer />
<NuxtLoadingIndicator />
<!-- <NuxtWelcome /> -->
<div class="flex flex-col min-h-screen border-t border-yellow-300">
<AppHeader />
<main class="flex-grow">
<NuxtPage />
</main>
<AppFooter />
</div>
</div>
</template>
<script setup lang="ts">
useHead({
titleTemplate: (titleChunk) => {
return titleChunk
? `${titleChunk} - Sugar Cube Studio`
: "Sugar Cube Studio";
},
});
</script>
<style>
body {
font-family: "Figtree", sans-serif;
background: #171926;
color: #fff;
}
.main {
/* padding: 16px; */
background: #0c0f1b;
/* min-height: 100vh; */
}
.gradient-button {
background: linear-gradient(to right, #525fb1, #5cb7e0);
transition: all 0.3s ease;
}
.gradient-button:hover {
background: linear-gradient(to right, #4a56a0, #4da5cc);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.gradient-button-yellow {
background: linear-gradient(to right, #f9b857, #fce680);
transition: all 1s ease-in-out;
}
.gradient-button-yellow:hover {
background: linear-gradient(to right, #e0a64e, #e3cd73);
transition: all 1s ease-in-out;
}
</style>