stepper style update
parent
653aa1b3f6
commit
549984e67e
|
@ -3,7 +3,7 @@ import ApplicationStepper from "./stepper/ApplicationStepper";
|
||||||
import Switcher from "./Switcher";
|
import Switcher from "./Switcher";
|
||||||
import { makeStyles } from "@material-ui/core/styles";
|
import { makeStyles } from "@material-ui/core/styles";
|
||||||
|
|
||||||
const useStyles = makeStyles(theme => ({
|
const useStyles = makeStyles(() => ({
|
||||||
app: {
|
app: {
|
||||||
textAlign: "center",
|
textAlign: "center",
|
||||||
backgroundColor: "#282c34",
|
backgroundColor: "#282c34",
|
||||||
|
|
|
@ -14,8 +14,10 @@ import StepIcon from "./StepIcon";
|
||||||
|
|
||||||
const styles = () => ({
|
const styles = () => ({
|
||||||
stepperCard: {
|
stepperCard: {
|
||||||
padding: "0px",
|
|
||||||
margin: "15px"
|
margin: "15px"
|
||||||
|
},
|
||||||
|
stepper: {
|
||||||
|
padding: "10px"
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -45,6 +47,7 @@ const ApplicationStepper = () => {
|
||||||
return (
|
return (
|
||||||
<Card className={classes.stepperCard}>
|
<Card className={classes.stepperCard}>
|
||||||
<Stepper
|
<Stepper
|
||||||
|
className={classes.stepper}
|
||||||
activeStep={activeStep.id}
|
activeStep={activeStep.id}
|
||||||
orientation="horizontal"
|
orientation="horizontal"
|
||||||
connector={<CustomStepConnector />}
|
connector={<CustomStepConnector />}
|
||||||
|
|
Loading…
Reference in New Issue