This commit is contained in:
X1627315083
2025-06-19 11:00:52 +08:00
parent 505c79665b
commit ea7c173eb3
7 changed files with 32 additions and 10 deletions

View File

@@ -2,11 +2,29 @@
<router-view/>
</template>
<style>
<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>