chore(docs): update styles

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
braks
2023-04-24 00:07:04 +02:00
committed by Braks
parent e294145520
commit 70604b9656
4 changed files with 36 additions and 43 deletions
-11
View File
@@ -3,7 +3,6 @@ import type { SFCOptions } from '@vue/repl'
import { ReplStore, Repl as VueRepl } from '@vue/repl'
import { useVueFlow } from '@vue-flow/core'
import '@vue/repl/style.css'
import { isClient } from '@vueuse/core'
import { exampleImports } from './examples'
const props = defineProps<{ example: keyof typeof exampleImports; mainFile?: string; dependencies?: Record<string, string> }>()
@@ -89,12 +88,6 @@ const sfcOptions = {
reactivityTransform: true,
},
} as SFCOptions
onMounted(() => {
if (isClient) {
document.body.className = 'examples'
}
})
</script>
<template>
@@ -122,8 +115,4 @@ onMounted(() => {
height: calc(var(--vh) - 72px);
}
.msg.err {
@apply hidden;
}
</style>