Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2880 Rev 3189
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react'
2
import { styled } from '@mui/material'
2
import { styled } from '@mui/material'
-
 
3
import colors from '@styles/colors'
Línea 3... Línea 4...
3
 
4
 
4
const CardGrid = styled('div')(({ theme }) => ({
5
const CardGrid = styled('div')(({ theme }) => ({
5
  display: 'grid',
6
  display: 'grid',
-
 
7
  gap: theme.spacing(0.5),
6
  gap: theme.spacing(0.5),
8
  marginTop: theme.spacing(1),
7
  position: 'relative',
9
  position: 'relative',
8
  width: '100%',
10
  width: '100%',
-
 
11
  gridTemplateColumns: 'repeat(auto-fill, minmax(20rem, 1fr))',
-
 
12
  '& + .MuiFormControl-root .MuiInputBase-root': {
-
 
13
    backgroundColor: colors.main
9
  gridTemplateColumns: 'repeat(auto-fill, minmax(20rem, 1fr))'
14
  }
Línea 10... Línea 15...
10
}))
15
}))
11
 
16
 
12
export default function ProfileCardsGrid({ children, styles, ...props }) {
17
export default function ProfileCardsGrid({ children, styles, ...props }) {