Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6938 Rev 6940
Línea 3... Línea 3...
3
import IconButton from '@mui/material/IconButton'
3
import IconButton from '@mui/material/IconButton'
4
import MoreVertIcon from '@mui/icons-material/MoreVert'
4
import MoreVertIcon from '@mui/icons-material/MoreVert'
5
import { Menu, MenuItem } from '@mui/material'
5
import { Menu, MenuItem } from '@mui/material'
Línea 6... Línea 6...
6
 
6
 
7
const StyledOptionsButton = styled(IconButton)`
7
const StyledOptionsButton = styled(IconButton)`
8
  position: absolute;
8
  position: absolute !important;
9
  right: ${(props) => props.right && 0};
9
  right: ${(props) => props.right || '0'};
10
  top: ${(props) => props.top && '50%'};
10
  top: ${(props) => props.top || '50%'};
11
  transform: translateY(-50%);
11
  transform: translateY(-50%);
12
  z-index: 100;
12
  z-index: 100;
Línea 13... Línea 13...
13
`
13
`