25 lines
431 B
Vue
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>
|