Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 1515 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1515 Rev 1526
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react'
2
import { Box, darken, styled } from '@mui/material'
2
import { Box, styled } from '@mui/material'
Línea 3... Línea 3...
3
 
3
 
4
const Option = styled(Box)(({ theme }) => ({
4
const Option = styled(Box)(({ theme }) => ({
5
  borderRadius: '50%',
5
  borderRadius: '50%',
6
  cursor: 'pointer',
6
  cursor: 'pointer',
7
  padding: 5,
7
  padding: 5,
8
  h4: {
8
  h4: {
9
    display: 'none'
9
    display: 'none'
10
  },
10
  },
11
  '&:hover': {
11
  '&:hover': {
12
    backgroundColor: darken(theme.palette.primary.main, 0.1)
12
    backgroundColor: 'whitesmoke'
13
  },
13
  },
14
  [theme.breakpoints.up('md')]: {
14
  [theme.breakpoints.up('md')]: {
15
    alignItems: 'center',
15
    alignItems: 'center',
16
    borderRadius: theme.shape.borderRadius,
16
    borderRadius: theme.shape.borderRadius,