Browse Source

feat: 移除屏幕适配缩放

cuiyalong 1 year ago
parent
commit
7895e1884d
1 changed files with 13 additions and 13 deletions
  1. 13 13
      packages/vue-anti/src/components/VerifyPoints.vue

+ 13 - 13
packages/vue-anti/src/components/VerifyPoints.vue

@@ -232,17 +232,17 @@ $black: #000;
   }
 }
 
-// 卡片适配不同屏幕的网页
-// 屏幕大于 1024px 或小于 1440px 时应用该样式
-@media screen and (min-width: 1024px) and (max-width: 1440px) {
-  .verify-points {
-    transform: scale(1.1);
-  }
-}
-// 屏幕大于 1440px
-@media screen and (min-width: 1440px) {
-  .verify-points {
-    transform: scale(1.2);
-  }
-}
+// // 卡片适配不同屏幕的网页
+// // 屏幕大于 1024px 或小于 1440px 时应用该样式
+// @media screen and (min-width: 1024px) and (max-width: 1440px) {
+//   .verify-points {
+//     transform: scale(1.1);
+//   }
+// }
+// // 屏幕大于 1440px
+// @media screen and (min-width: 1440px) {
+//   .verify-points {
+//     transform: scale(1.2);
+//   }
+// }
 </style>