Skip to content

Commit

Permalink
fix(DateRangePicker): avoid kebab case for object css (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
mantariksh authored Feb 1, 2023
1 parent 8ba3d83 commit 4da1c47
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const DateRangePickerInput = forwardRef<{}, 'input'>((_props, ref) => {
overflowX="auto"
sx={{
// Hide scrollbars so dual inputs feel like a real normal input.
'-ms-overflow-style': 'none',
msOverflowStyle: 'none',
scrollbarWidth: 'none',
'&::-webkit-scrollbar': {
display: 'none',
Expand Down

0 comments on commit 4da1c47

Please sign in to comment.