@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
20 lines (19 loc) • 569 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
'& .SCScrollContainer-scrollbar': {
width: 5,
borderRadius: 5,
overflowX: 'hidden',
backgroundColor: theme.palette.background.default,
transition: 'opacity 200ms ease-out'
},
'& .SCScrollContainer-scroll-thumb': {
width: 5
}
})
}
};
exports.default = Component;
;