Files
vue-flow/examples/nuxt3/app.vue
2024-02-21 23:42:55 +01:00

25 lines
431 B
Vue

<template>
<NuxtPage />
</template>
<style>
@import './style.css';
@import '@vue-flow/core/dist/style.css';
@import '@vue-flow/core/dist/theme-default.css';
@import '@vue-flow/controls/dist/style.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;
}
</style>