mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
24 lines
413 B
Vue
24 lines
413 B
Vue
<template>
|
|
<div class="embed-main text-gray-300">
|
|
<nuxt />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
// import '@fontsource/inter/latin-100.css'
|
|
// import '@fontsource/inter/latin-400.css'
|
|
// import '@fontsource/inter/latin-700.css'
|
|
|
|
import '@fontsource/inter/variable.css'
|
|
|
|
export default {}
|
|
|
|
</script>
|
|
|
|
<style>
|
|
/* Clear out background color */
|
|
html {
|
|
background: transparent;
|
|
}
|
|
</style>
|