chore: modify the breadcrumb style

This commit is contained in:
JimmFly
2023-01-30 19:03:52 +08:00
parent 8574ba596b
commit fec1944fa9

View File

@@ -1,2 +1,8 @@
import MuiBreadcrumbs from '@mui/material/Breadcrumbs';
export { MuiBreadcrumbs };
import { styled } from '@/styles';
export const Breadcrumbs = styled(MuiBreadcrumbs)(({ theme }) => {
return {
color: theme.colors.popoverColor,
};
});