Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3697 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3719 stevensc 1
import { IconButton, styled } from '@mui/material';
2
 
3
export const DragAndDropContainer = styled('div')`
4
  display: flex;
5
  flex-direction: column;
6
  align-items: center;
7
  padding: 2rem 0;
8
  border: 2px dashed #eee;
9
  border-radius: 2;
10
  background-color: #fafafa;
11
  color: #bdbdbd;
12
  outline: none;
13
  transition: border 0.24s ease-in-out;
14
  text-align: center;
15
  cursor: pointer;
16
`;
17
 
18
export const PreviewContainer = styled('div')`
19
  display: flex;
20
  position: relative;
21
  justify-content: center;
22
  width: 100%;
23
  img,
24
  video,
25
  object {
26
    width: 100%;
27
    height: 100%;
28
    max-height: 500px;
29
    object-fit: contain;
30
  }
31
`;
32
 
33
export const CloseButton = styled(IconButton)`
34
  position: absolute;
35
  background-color: #000;
36
  color: #fff;
37
  right: 1rem;
38
  svg {
39
    font-size: 1rem;
40
  }
41
`;