-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathapp.vue
More file actions
35 lines (30 loc) 路 747 Bytes
/
Copy pathapp.vue
File metadata and controls
35 lines (30 loc) 路 747 Bytes
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
<script setup lang="ts">
defineOgImage({ url: '/img/storacha-og-card.png', width: 1200, height: 630, alt: 'Storacha - Decentralized Hot Storage Layer on Filecoin' })
</script>
<template>
<NuxtLoadingIndicator color="#BDE0FF" style="opacity: 1;" />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
<DevOnly>
<Debug />
</DevOnly>
</template>
<style lang="postcss">
html {
@apply antialiased bg-brand-4;
}
/* Add global focus styles */
:focus-visible {
@apply outline-none ring-2 ring-brand-1 ring-offset-2 rounded ring-offset-transparent;
}
p a {
@apply transform decoration-1 decoration-gray/50 underline underline-offset-3;
}
p a:hover {
@apply decoration-gray decoration-2;
}
footer a:hover {
@apply underline;
}
</style>