source: src/theme/overrides/components/breadcrumbs.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 533 bytes
Line 
1import { Theme } from '@mui/material/styles';
2
3// ----------------------------------------------------------------------
4
5export function breadcrumbs(theme: Theme) {
6 return {
7 MuiBreadcrumbs: {
8 styleOverrides: {
9 separator: {
10 marginLeft: theme.spacing(2),
11 marginRight: theme.spacing(2),
12 },
13 li: {
14 display: 'inline-flex',
15 margin: theme.spacing(0.25, 0),
16 '& > *': {
17 ...theme.typography.body2,
18 },
19 },
20 },
21 },
22 };
23}
Note: See TracBrowser for help on using the repository browser.