32 lines
480 B
Vue

<template>
<div>
<Nuxt />
</div>
</template>
<style>
@font-face {
font-family: GolemAscend;
src: url(https://thegolem.cz/public/font/GolemAscend.ttf);
}
html {
font-family: GolemAscend, sans-serif;
font-size: 16px;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
}
</style>