Explorar el Código

Input slider width change (#3644)

sdess09 hace 2 años
padre
commit
cf0c4791c7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      dashboard/src/components/porter/InputSlider.tsx

+ 1 - 1
dashboard/src/components/porter/InputSlider.tsx

@@ -199,7 +199,7 @@ const InputSlider: React.FC<InputSliderProps> = ({
 export default InputSlider;
 
 const SliderContainer = styled.div<{ width?: string }>`
-  width: ${({ width }) => width || '800px'};
+  width: ${({ width }) => width || '90%'};
   margin: 1px 0;
 `;