Files
aida_front/src/App.vue
X1627315083 ea7c173eb3 fix
2025-06-19 11:00:52 +08:00

31 lines
582 B
Vue

<template>
<router-view/>
</template>
<style lang="less">
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
height: 100%;
}
.ipad{
*{
-webkit-touch-callout:none;
-khtml-user-select:none;
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select: none;
user-select:none;
input,textarea{
-webkit-touch-callout:default;
-khtml-user-select:auto;
-webkit-user-select:auto;
-moz-user-select:auto;
-ms-user-select: auto;
user-select:auto;
}
}
}
</style>