File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import RenderingFrequency from './RenderingFrequency';
4
4
import FormControlLabel from '@material-ui/core/FormControlLabel' ;
5
5
import Switch from '@material-ui/core/Switch' ;
6
6
import BarGraph from './BarGraph' ;
7
+
7
8
/* NOTES
8
9
Issue - Not fully compatible with recoil apps. Reference the recoil-todo-test.
9
10
Barstacks display inconsistently...however, almost always displays upon initial test app load or
@@ -98,7 +99,7 @@ const PerformanceVisx = (props: BarStackProps) => {
98
99
}
99
100
// filter and structure incoming data for VISX
100
101
const data = getPerfMetrics ( snapshots , getSnapshotIds ( hierarchy ) ) ;
101
- const colorSlider = "#ff6569"
102
+
102
103
// style={{ position: 'relative' }}
103
104
// if performance tab is too small it will not return VISX component
104
105
return (
Original file line number Diff line number Diff line change 2
2
display : flex ;
3
3
justify-content : center ;
4
4
}
5
+
6
+ .MuiSwitch-colorPrimary.Mui-checked {
7
+ color : #62d6fb !important ;
8
+ }
9
+
10
+ .MuiSwitch-switchBase {
11
+ color : #ff6569 !important ;
12
+ }
13
+
14
+ .MuiSwitch-track {
15
+ background-color : #e7e7e7 !important ;
16
+ }
You can’t perform that action at this time.
0 commit comments