Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 3348 Rev 3388
Línea 6... Línea 6...
6
  gap: theme.spacing(0.5),
6
  gap: theme.spacing(0.5),
7
  justifyContent: 'center',
7
  justifyContent: 'center',
8
  padding: theme.spacing(0.5, 0)
8
  padding: theme.spacing(0.5, 0)
9
}))
9
}))
Línea 10... Línea 10...
10
 
10
 
11
const Emoji = styled('button')`
11
const Emoji = styled('button')(({ theme }) => ({
12
  width: 32px;
12
  width: 20,
13
  height: 32px;
13
  height: 20,
14
  border-radius: 50%;
14
  borderRadius: '50%',
15
  transition: all 300ms;
15
  transition: 'all 300ms',
16
  & > img {
16
  '& > img': {
17
    height: 100%;
17
    height: '100%',
18
    object-fit: cover;
18
    objectFit: 'cover',
-
 
19
    width: '100%'
-
 
20
  },
-
 
21
  '&:hover': {
-
 
22
    transform: 'translateY(-5px)'
-
 
23
  },
-
 
24
  [theme.breakpoints.up('sm')]: {
-
 
25
    width: 32,
19
    width: 100%;
26
    height: 32
20
  }
-
 
21
  &:hover {
-
 
22
    transform: translateY(-5px);
27
  }
23
  }
-
 
Línea 24... Línea 28...
24
`
28
}))
25
 
29
 
26
export default function EmojiGroup({ children }) {
30
export default function EmojiGroup({ children }) {