From c7bd1a3fd46b5d5f887ce4f674387294ee1e8ccd Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: 星期二, 31 十月 2023 17:09:29 +0800
Subject: [PATCH] 添加手机校验

---
 src/App.vue |   18 ++++++++++++++----
 1 files changed, 14 insertions(+), 4 deletions(-)

diff --git a/src/App.vue b/src/App.vue
index ff01db3..1f80fff 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -11,12 +11,22 @@
   -moz-osx-font-smoothing: grayscale;
 }
 * {
-  margin: 0px;
-  padding: 0px;
+  margin: 0;
+  padding: 0;
 }
 .inner{
-	background-color: #fff;padding: 20px 10px;
-	height: 100vh;
+	background-color: #fff;
+  padding: 20px 10px;
+	height: 88vh;
+  overflow: hidden;
+  overflow-y: scroll;
+  scrollbar-width: thin;
+  scrollbar-color: transparent transparent;
+
+  &::-webkit-scrollbar {
+    width: 0;
+    background-color: transparent;
+  }
 }
 .ftright{
 	float:right;

--
Gitblit v1.9.2