File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,15 @@ const useStyles = makeStyles(
26
26
bottom : spacing ( 2 ) ,
27
27
overflow : 'hidden' ,
28
28
zIndex : 1 ,
29
- right : spacing ( 60 )
29
+ right : spacing ( 41 )
30
30
} ,
31
31
button : {
32
32
backgroundColor : getContrastText ( background . default ) ,
33
33
color : background . default ,
34
34
padding : spacing ( 1 ) ,
35
35
opacity : 0.5 ,
36
+ width : spacing ( 21 ) ,
37
+ margin : spacing ( 0 , 1 ) ,
36
38
'&:hover' : {
37
39
opacity : 0.8
38
40
}
Original file line number Diff line number Diff line change @@ -45,7 +45,14 @@ export const Mail = () => {
45
45
React . useEffect ( ( ) => {
46
46
console . log ( state )
47
47
} , [ state ] )
48
- return < DndEditor value = { state } onHtmlChange = { console . log } onChange = { setState } />
48
+ return (
49
+ < DndEditor
50
+ value = { state }
51
+ onHtmlChange = { console . log }
52
+ onSendEmail = { console . log }
53
+ onChange = { setState }
54
+ />
55
+ )
49
56
}
50
57
51
58
export const Form = ( ) => {
You can’t perform that action at this time.
0 commit comments