1
0
Fork 0
dri/src/App.vue

25 lines
295 B
Vue
Raw Permalink Normal View History

2018-09-26 22:27:42 +08:00
<template>
2018-09-29 16:37:40 +08:00
<router-view/>
2018-09-26 22:27:42 +08:00
</template>
<style>
*, *::before, *::after {
2018-09-29 16:37:40 +08:00
box-sizing: border-box;
2018-09-26 22:27:42 +08:00
}
html, body {
2018-09-29 16:37:40 +08:00
padding: 0;
margin: 0;
2018-09-26 22:27:42 +08:00
}
html {
2018-09-29 16:37:40 +08:00
font-size: 16px;
2018-09-26 22:27:42 +08:00
}
body {
2018-09-29 16:37:40 +08:00
font-size: 1rem;
2018-09-26 22:27:42 +08:00
2018-09-29 16:37:40 +08:00
font-family: 'Source Sans Pro';
2018-09-26 22:27:42 +08:00
}
pre, code, kbd, samp {
2018-09-29 16:37:40 +08:00
font-family: 'Source Code Pro';
2018-09-26 22:27:42 +08:00
}
</style>