Browse Source

先屏蔽%的设定

liwei 1 year ago
parent
commit
24669e0e36
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/modules/editor/components/CompUI/formItems/Size.tsx

+ 1 - 1
src/modules/editor/components/CompUI/formItems/Size.tsx

@@ -10,7 +10,7 @@ import { TipIcons } from "../../TipIcons";
 
 const selectOptions = [
   { value: "px", label: "PX", options: { step: 1 } },
-  { value: "%", label: "%", options: { step: 0.1 } },
+  // { value: "%", label: "%", options: { step: 0.1 } },
 ];
 
 export const Size = defineComponent({