File size: 449 Bytes
466436b
 
502af73
466436b
 
 
502af73
 
 
466436b
 
 
 
 
 
 
 
 
 
 
502af73
 
466436b
 
 
 
 
 
 
502af73
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<template>
	<div id="app">
		<LayoutFrame />
	</div>
</template>

<script setup lang="ts">
	import LayoutFrame from "./components/LayoutFrame.vue";
</script>

<style lang="scss">
	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	html,
	body {
		height: 100%;
		font-family:
			-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
			sans-serif;
	}

	#app {
		height: 100vh;
		background: #f5f5f5;
	}
</style>