-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.js
More file actions
38 lines (37 loc) · 782 Bytes
/
Copy pathstyles.js
File metadata and controls
38 lines (37 loc) · 782 Bytes
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
import { makeStyles } from '@material-ui/core/styles';
export default makeStyles((theme) => ({
paper: {
position: 'absolute',
backgroundColor: theme.palette.background.paper,
boxShadow: theme.shadows[5],
padding: theme.spacing(5),
top: '50%',
left: '50%',
transform: 'translate(-50%, -50%)',
outline: 'none',
overflow: 'scroll',
height: '60%',
},
infoContainer: {
display: 'flex',
alignItems: 'center',
// justifyContent: 'center',
padding: '25px 0',
},
chipContainer: {
display: 'flex',
flexWrap: 'wrap',
paddingLeft: '25px',
// width: '50%',
},
trySaying: {
marginBottom: '25px',
},
chip: {
margin: '5px',
},
form: {
display: 'flex',
flexDirection: 'column',
},
}));