n-link/web/layouts/default.vue

28 lines
463 B
Vue
Raw Normal View History

2020-10-06 15:01:36 +00:00
<template>
<div class="h-screen">
<Nuxt />
</div>
</template>
<style>
html {
color: #2c3e50;
user-select: none;
font-family: Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
word-spacing: 1px;
-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>