Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjustments in theme to fix uses cases in cloud-native #553

Merged
merged 8 commits into from
Dec 20, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
slider small by default
  • Loading branch information
vmilan committed Dec 15, 2022
commit f4a9e4ecc605672f34d37593564b9b031adf1bb6
11 changes: 10 additions & 1 deletion packages/react-ui/src/theme/sections/components/forms.js
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,16 @@ export const formsOverrides = {
MuiSlider: {
defaultProps: {
color: 'primary',
marks: false
marks: false,
size: 'small'
},

styleOverrides: {
thumb: {
'&:hover, &.Mui-focusVisible': {
boxShadow: `0 0 0 8px ${commonPalette.primary.background}`
}
}
}
}
};