Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 1507 | Rev 1509 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1507 Rev 1508
Línea 2... Línea 2...
2
import { useHistory } from 'react-router-dom'
2
import { useHistory } from 'react-router-dom'
3
import { Avatar, Box, styled } from '@mui/material'
3
import { Avatar, Box, styled } from '@mui/material'
Línea 4... Línea 4...
4
 
4
 
5
export const WidgetWrapper = styled(Box)(({ theme }) => ({
5
export const WidgetWrapper = styled(Box)(({ theme }) => ({
6
  backgroundColor: theme.palette.background.default,
6
  backgroundColor: theme.palette.background.default,
7
  boxShadow: theme.shadows[2], // 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
7
  boxShadow: theme.shadows[1], // 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
8
  height: 'fit-content',
8
  height: 'fit-content',
9
  width: '100%',
9
  width: '100%',
10
  boxSizing: 'border-box',
10
  boxSizing: 'border-box',
11
  overflow: 'hidden',
11
  overflow: 'hidden',
Línea 21... Línea 21...
21
  },
21
  },
22
  h2: {
22
  h2: {
23
    fontSize: '1rem'
23
    fontSize: '1rem'
24
  },
24
  },
25
  [theme.breakpoints.up('sm')]: {
25
  [theme.breakpoints.up('sm')]: {
26
    borderRadius: 'var(--border-radius)'
26
    borderRadius: theme.shape.borderRadius(1)
27
  }
27
  }
28
}))
28
}))
Línea 29... Línea 29...
29
 
29
 
30
WidgetWrapper.Body = styled(Box)({
30
WidgetWrapper.Body = styled(Box)({