@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
45 lines (44 loc) • 1.35 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .MuiList-root': {
'& .Mui-selected': {
backgroundColor: any;
'&:hover, &:focus, &:active': {
backgroundColor: any;
};
};
'& .MuiButtonBase-root': {
paddingLeft: any;
};
};
'& .SCCourseContentMenu-list-item': {
'&:hover, &:focus, &:active': {
backgroundColor: string;
};
};
'& .SCCourseContentMenu-list-item-icon': {
minWidth: any;
color: any;
};
'& .SCCourseContentMenu-item': {
'& .MuiListItemText-primary': {
fontWeight: any;
};
'&:hover': {
backgroundColor: string;
};
};
'& .SCCourseContentMenu-item-icon': {
minWidth: any;
};
'& .SCCourseContentMenu-icon-complete': {
color: any;
};
'& .SCCourseContentMenu-icon-incomplete': {
color: any;
};
};
};
};
export default Component;