mirror of
https://github.com/cuiocean/ZY-Player.git
synced 2026-05-08 15:02:17 +08:00
20 lines
442 B
Vue
20 lines
442 B
Vue
<template>
|
|
<div id="app" class="theme-light">
|
|
<router-view/>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@import './assets/scss/theme.scss';
|
|
html, body, #app{
|
|
height: 100%;
|
|
border-radius: 6px;
|
|
}
|
|
#app {
|
|
font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', SimSun, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-webkit-tap-highlight-color: transparent;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|