Skip to content

Commit

Permalink
remove default width indefinitely 🚨
Browse files Browse the repository at this point in the history
  • Loading branch information
hiaaryan committed Jun 5, 2021
1 parent f7dca43 commit ac2448a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Slider/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const Slider: React.FC<SliderProps> = ({ className, onInput, value, dark
type="range"
min="1"
max="100"
className={`${className} ${dark ? 'slider' : 'slider-light'} bg-blue-darker w-60 h-1 pb-1 pt-0 rounded-full shadow-inner-sm`}
className={`${dark ? 'slider' : 'slider-light'} bg-blue-darker h-1 pb-1 pt-0 rounded-full shadow-inner-sm ${className}`}
/>
);
};
Expand Down

0 comments on commit ac2448a

Please sign in to comment.