import { makeStyles } from 'tss-react/mui' export const useImageListLightboxStyles = makeStyles()({ lightbox: { '& .MuiPaper-root': { backgroundColor: 'rgba(0,0,0,0.9)' }, '& .MuiDialogTitle-root': { position: 'absolute', top: 0, right: 0, zIndex: 2 }, '& .carousel': { height: '100%' }, '& .carousel-inner': { height: '100%' }, '& .react-swipeable-view-container': { height: '100%', '& .carousel-item': { display: 'flex', height: '100%', flexDirection: 'column', justifyContent: 'center', alignItems: 'center', position: 'relative' } }, '& .MuiSvgIcon-root': { color: 'white' }, '& .carousel-indicators': { position: 'absolute', bottom: 0, width: '100%', textAlign: 'center' }, '& .carousel-control-next, & .carousel-control-prev': { position: 'absolute', height: '100%', top: 0, display: 'flex', alignItems: 'center', cursor: 'pointer', '&:focus': { outline: 'none' }, '& .MuiSvgIcon-root': { fontSize: '4rem', color: 'rgba(255,255,255,0.8)' } }, '& .carousel-control-next': { right: 0 } } })