Files
aida_front/src/App.vue

34 lines
671 B
Vue
Raw Normal View History

2023-01-06 16:00:15 +08:00
<template>
<router-view/>
</template>
2025-06-19 11:00:52 +08:00
<style lang="less">
2023-01-06 16:00:15 +08:00
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2024-12-19 13:47:55 +08:00
height: 100%;
2023-01-06 16:00:15 +08:00
}
2025-08-22 10:27:48 +08:00
2025-06-19 11:00:52 +08:00
.ipad{
*{
-webkit-touch-callout:none;
-khtml-user-select:none;
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select: none;
user-select:none;
2025-09-02 16:11:47 +08:00
touch-action: pan-x pan-y; /* 允许单指平移(滚动)但禁用捏合缩放 */
2025-06-19 11:00:52 +08:00
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;
}
}
}
2023-01-06 16:00:15 +08:00
</style>