1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
import {
pink as red,
lightGreen as green,
lightBlue as blue,
deepPurple as violet,
orange,
} from '@material-ui/core/colors';
const styles = theme => ({
root: {
padding: 20,
[theme.breakpoints.down('sm')]: {
padding: '20px 8px'
},
},
calendarWrap: {
minHeight: 600
},
addBtn: {
position: 'fixed',
bottom: 30,
right: 30,
zIndex: 100
},
typography: {
margin: theme.spacing(2),
},
divider: {
margin: '5px 0',
textAlign: 'center'
},
button: {
margin: theme.spacing(1),
},
eventName: {
padding: '50px 20px 10px 30px',
minWidth: 400,
color: 'rgba(0, 0, 0, 0.7)',
'& svg': {
top: -2,
position: 'relative'
}
},
time: {
padding: 20
},
moreOpt: {
position: 'absolute',
top: 10,
right: 10
},
field: {
width: '100%',
marginBottom: 20
},
fieldBasic: {
width: '100%',
marginBottom: 20,
marginTop: 10
},
inlineWrap: {
display: 'flex',
flexDirection: 'row'
},
redRadio: {
color: red[600],
'& svg': {
borderRadius: '50%',
background: red[100],
},
'&$checked': {
color: red[500],
},
},
greenRadio: {
color: green[600],
'& svg': {
borderRadius: '50%',
background: green[100],
},
'&$checked': {
color: green[500],
},
},
blueRadio: {
color: blue[600],
'& svg': {
borderRadius: '50%',
background: blue[100],
},
'&$checked': {
color: blue[500],
},
},
violetRadio: {
color: violet[600],
'& svg': {
borderRadius: '50%',
background: violet[100],
},
'&$checked': {
color: violet[500],
},
},
orangeRadio: {
color: orange[600],
'& svg': {
borderRadius: '50%',
background: orange[100],
},
'&$checked': {
color: orange[500],
},
},
checked: {},
});
export default styles;
|