Skip to content

Commit

Permalink
Input slider width change (#3644)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdess09 authored Sep 25, 2023
1 parent 88d41cf commit cf0c479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/src/components/porter/InputSlider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
`;

Expand Down

0 comments on commit cf0c479

Please sign in to comment.