소스 검색

first step

David Catuhe 4 년 전
부모
커밋
ed4a1ee4fa

+ 0 - 1
inspector/src/components/actionTabs/actionTabs.scss

@@ -5,7 +5,6 @@ $line-padding-left: 2px;
     right: 0px;
     top:0px;
     bottom: 0px;
-    transform: scale(1);
 }
 
 #__resizable_base__ {

+ 0 - 1
inspector/src/components/embedHost/embedHost.scss

@@ -3,7 +3,6 @@
     right: 0px;
     top:0px;
     bottom: 0px;
-    transform: scale(1);
     z-index: 10;
 }
 

+ 0 - 1
inspector/src/components/sceneExplorer/sceneExplorer.scss

@@ -3,7 +3,6 @@
     left: 0px;
     top:0px;
     bottom: 0px;
-    transform: scale(1);
 
     &:focus {
         outline: none;

+ 2 - 2
nodeEditor/src/sharedComponents/floatLineComponent.tsx

@@ -112,7 +112,7 @@ export class FloatLineComponent extends React.Component<IFloatLineComponentProps
         let className = this.props.smallUI ? "short": "value";
 
         return (
-            <div>
+            <>
                 {
                     <div className={this.props.additionalClass ? this.props.additionalClass + " floatLine" : "floatLine"}>
                         <div className="label">
@@ -139,7 +139,7 @@ export class FloatLineComponent extends React.Component<IFloatLineComponentProps
                         </div>
                     </div>
                 }
-            </div>
+            </>
         );
     }
 }