@@ -95,6 +95,7 @@ const Root = styled('div')(({ theme }) => ({
95
95
96
96
[ `& .${ classes . indicator } ` ] : {
97
97
width : 4 ,
98
+ backgroundColor : '#f50057' ,
98
99
} ,
99
100
100
101
[ `& .${ classes . tabLink } ` ] : {
@@ -116,6 +117,7 @@ const Root = styled('div')(({ theme }) => ({
116
117
top : 'calc(50% - 40px)' ,
117
118
left : 'calc(50% - 40px)' ,
118
119
zIndex : - 1 ,
120
+ color : '#f50057' ,
119
121
} ,
120
122
121
123
[ `& .${ classes . editorContainer } ` ] : {
@@ -341,7 +343,7 @@ const ComponentExample = ({ variants, schema, activeMapper, component, schemaVar
341
343
</ Tabs >
342
344
< div id = "code-target" className = "pepa" > </ div >
343
345
< div className = { classes . spinner } >
344
- < CircularProgress color = "secondary " size = { 80 } />
346
+ < CircularProgress color = "inherit " size = { 80 } />
345
347
</ div >
346
348
</ div >
347
349
</ Box >
@@ -353,6 +355,8 @@ const ComponentExample = ({ variants, schema, activeMapper, component, schemaVar
353
355
target = "_blank"
354
356
href = { originalComponentLink ( activeMapper , activeComponent ) }
355
357
startIcon = { < LinkIcon /> }
358
+ color = "inherit"
359
+ sx = { { borderColor : '#c6c6c6' } }
356
360
>
357
361
Original documentation
358
362
</ Button >
@@ -362,6 +366,8 @@ const ComponentExample = ({ variants, schema, activeMapper, component, schemaVar
362
366
target = "_blank"
363
367
href = { `https://github.com/data-driven-forms/react-forms/blob/master/packages/${ activeMapper } -component-mapper/src/${ activeComponent } /${ activeComponent } .js` }
364
368
startIcon = { < GhIcon /> }
369
+ color = "inherit"
370
+ sx = { { borderColor : '#c6c6c6' } }
365
371
>
366
372
DDF implementation
367
373
</ Button >
0 commit comments