Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 7386 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
7386 stevensc 1
export const thumbStyle = {
15268 stevensc 2
	display: 'inline-flex',
3
	borderRadius: '2px',
4
	border: '1px solid #eaeaea',
5
	marginBottom: '8px',
6
	marginRight: '8px',
7
	width: '150px',
8
	height: '150px',
9
	padding: '4px',
10
	boxSizing: 'border-box',
11
	position: 'relative',
12
	zIndex: '100',
13
}
7386 stevensc 14
 
15
export const thumbInnerStyle = {
15268 stevensc 16
	display: 'flex',
17
	minWidth: 0,
18
	overflow: 'hidden',
19
	marginRight: '1.5rem',
20
	maxWidth: '100%'
21
}
7386 stevensc 22
 
23
export const imgStyle = {
15268 stevensc 24
	display: 'block',
25
	width: 'auto',
26
	height: '100%',
27
	objectFit: 'contain',
28
}
7386 stevensc 29
 
30
export const CloseButtonContainer = {
15268 stevensc 31
	width: '20px',
32
	height: '20px',
33
	position: 'absolute',
34
	top: '5px',
35
	right: '0px',
36
	cursor: 'pointer',
37
	zIndex: '200',
38
}
7386 stevensc 39
 
40
export const thumbsContainerStyle = {
15268 stevensc 41
	display: 'flex',
42
	flexDirection: 'row',
43
	flexWrap: 'wrap',
44
	marginTop: 16,
45
	position: 'relative',
46
	justifyContent: 'center',
47
	width: '100%'
48
}
7386 stevensc 49
 
50
export const baseStyle = {
15268 stevensc 51
	display: 'flex',
52
	flexDirection: 'column',
53
	alignItems: 'center',
54
	padding: '2rem 0',
55
	borderWidth: 2,
56
	borderRadius: 2,
57
	borderColor: '#eeeeee',
58
	borderStyle: 'dashed',
59
	backgroundColor: '#fafafa',
60
	color: '#bdbdbd',
61
	outline: 'none',
62
	transition: 'border .24s ease-in-out',
63
	marginTop: '1rem',
64
	cursor: 'pointer',
65
}