Further UI Updates.

This commit is contained in:
Patrick Fic
2021-03-30 17:13:33 -07:00
parent a0654bdb2c
commit a61be6a44f
48 changed files with 755 additions and 616 deletions

View File

@@ -27,6 +27,14 @@ const CourtesyCarFuelComponent = (props, ref) => {
},
};
return <Slider ref={ref} marks={marks} step={null} {...props} />;
return (
<Slider
ref={ref}
marks={marks}
step={null}
style={{ marginLeft: "2rem", marginRight: "2rem" }}
{...props}
/>
);
};
export default forwardRef(CourtesyCarFuelComponent);