Files
vue-flow/examples/nuxt3/app.vue
2022-10-08 23:25:34 +02:00

25 lines
403 B
Vue

<template>
<NuxtPage />
</template>
<style>
@import '@vue-flow/core/dist/style.css';
@import '@vue-flow/core/dist/theme-default.css';
html,
body,
#__nuxt {
margin: 0;
height: 100%;
}
#__nuxt {
text-transform: uppercase;
font-family: 'JetBrains Mono', monospace;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
</style>