CEC-4545: fix responsive ecu table (#367)

* CEC-4545: fix responsive ecu table
This commit is contained in:
Tristan Timblin
2023-06-21 13:41:40 -04:00
committed by GitHub
parent 5120c27187
commit 224b4b2157
7 changed files with 42 additions and 12 deletions

View File

@@ -16,7 +16,7 @@ const MainForm = ({ vin }) => {
} = useUserContext();
return (
<div className={clsx(classes.paper, classes.tableSize)}>
<div className={clsx(classes.tableSize, classes.textCenterAlign)}>
<Typography variant="h6" className={classes.labelInline}>
Car ECUs
</Typography>
@@ -25,9 +25,9 @@ const MainForm = ({ vin }) => {
);
};
const CarUpdatesTab = ({vin}) => (
const CarUpdatesTab = ({ vin }) => (
<VehicleProvider>
<MainForm vin={vin}/>
<MainForm vin={vin} />
</VehicleProvider>
);