stepper style update

master
Tudor Stanciu 2020-12-19 02:14:09 +02:00
parent 653aa1b3f6
commit 549984e67e
2 changed files with 5 additions and 2 deletions

View File

@ -3,7 +3,7 @@ import ApplicationStepper from "./stepper/ApplicationStepper";
import Switcher from "./Switcher";
import { makeStyles } from "@material-ui/core/styles";
const useStyles = makeStyles(theme => ({
const useStyles = makeStyles(() => ({
app: {
textAlign: "center",
backgroundColor: "#282c34",

View File

@ -14,8 +14,10 @@ import StepIcon from "./StepIcon";
const styles = () => ({
stepperCard: {
padding: "0px",
margin: "15px"
},
stepper: {
padding: "10px"
}
});
@ -45,6 +47,7 @@ const ApplicationStepper = () => {
return (
<Card className={classes.stepperCard}>
<Stepper
className={classes.stepper}
activeStep={activeStep.id}
orientation="horizontal"
connector={<CustomStepConnector />}