Spaces:
Running
Running
fix (CSS): Minor CSS fixes for performance view.
Browse filesSigned-off-by: Kshitij Fadnis <cool.kshij@gmail.com>
src/views/example/Example.tsx
CHANGED
|
@@ -260,6 +260,7 @@ export default memo(function Example({ data }: { data: Data }) {
|
|
| 260 |
className={classes.tabList}
|
| 261 |
aria-label="Metrics tab"
|
| 262 |
contained
|
|
|
|
| 263 |
>
|
| 264 |
<Tab key={'data-characteristics-tab'} renderIcon={DataVis_4}>
|
| 265 |
Data Characteristics
|
|
|
|
| 260 |
className={classes.tabList}
|
| 261 |
aria-label="Metrics tab"
|
| 262 |
contained
|
| 263 |
+
fullWidth
|
| 264 |
>
|
| 265 |
<Tab key={'data-characteristics-tab'} renderIcon={DataVis_4}>
|
| 266 |
Data Characteristics
|
src/views/performance-overview/PerformanceOverview.module.scss
CHANGED
|
@@ -45,6 +45,7 @@
|
|
| 45 |
}
|
| 46 |
|
| 47 |
.column {
|
|
|
|
| 48 |
display: flex;
|
| 49 |
flex-direction: column;
|
| 50 |
align-items: center;
|
|
@@ -64,6 +65,7 @@
|
|
| 64 |
}
|
| 65 |
|
| 66 |
.performanceTable {
|
|
|
|
| 67 |
display: flex;
|
| 68 |
flex-direction: column;
|
| 69 |
row-gap: $spacing-03;
|
|
|
|
| 45 |
}
|
| 46 |
|
| 47 |
.column {
|
| 48 |
+
max-width: 100%;
|
| 49 |
display: flex;
|
| 50 |
flex-direction: column;
|
| 51 |
align-items: center;
|
|
|
|
| 65 |
}
|
| 66 |
|
| 67 |
.performanceTable {
|
| 68 |
+
max-width: 100%;
|
| 69 |
display: flex;
|
| 70 |
flex-direction: column;
|
| 71 |
row-gap: $spacing-03;
|