source: src/components/progress-bar/styles.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: 1.1 KB
Line 
1// @mui
2import { useTheme } from '@mui/material/styles';
3import GlobalStyles from '@mui/material/GlobalStyles';
4
5// ----------------------------------------------------------------------
6
7export default function StyledProgressBar() {
8 const theme = useTheme();
9
10 const inputGlobalStyles = (
11 <GlobalStyles
12 styles={{
13 '#nprogress': {
14 pointerEvents: 'none',
15 '.bar': {
16 top: 0,
17 left: 0,
18 height: 2.5,
19 zIndex: 9999,
20 width: '100%',
21 position: 'fixed',
22 backgroundColor: theme.palette.primary.main,
23 boxShadow: `0 0 2px ${theme.palette.primary.main}`,
24 },
25 '.peg': {
26 right: 0,
27 opacity: 1,
28 width: 100,
29 height: '100%',
30 display: 'block',
31 position: 'absolute',
32 transform: 'rotate(3deg) translate(0px, -4px)',
33 boxShadow: `0 0 10px ${theme.palette.primary.main}, 0 0 5px ${theme.palette.primary.main}`,
34 },
35 },
36 }}
37 />
38 );
39
40 return inputGlobalStyles;
41}
Note: See TracBrowser for help on using the repository browser.