[READ-ONLY] Mirror of https://github.com/flo-bit/threlte-vr-code-editor. proof of concept for a live 3d code editor in vr
code-editor
threejs
threlte
vr
328 B
20 lines
1<script lang="ts">
2 import App from '$lib/components/App.svelte'
3</script>
4
5<div>
6 <App />
7</div>
8
9<style>
10 :global(body) {
11 margin: 0;
12 }
13
14 div {
15 width: 100vw;
16 height: 100vh;
17 background: rgb(13, 19, 32);
18 background: linear-gradient(180deg, rgba(13, 19, 32, 1) 0%, rgba(8, 12, 21, 1) 100%);
19 }
20</style>