diff --git a/src/components/Tutorial/Tutorial.js b/src/components/Tutorial/Tutorial.js index 8ef03dc..8b4cfa2 100644 --- a/src/components/Tutorial/Tutorial.js +++ b/src/components/Tutorial/Tutorial.js @@ -8,20 +8,31 @@ import CodeViewer from '../CodeViewer'; import tutorials from './tutorials.json'; +import { fade } from '@material-ui/core/styles/colorManipulator'; import { withStyles } from '@material-ui/core/styles'; import Tabs from '@material-ui/core/Tabs'; import Tab from '@material-ui/core/Tab'; import Grid from '@material-ui/core/Grid'; import Card from '@material-ui/core/Card'; +import Button from '@material-ui/core/Button'; +import Stepper from '@material-ui/core/Stepper'; +import Step from '@material-ui/core/Step'; +import StepLabel from '@material-ui/core/StepLabel'; + const styles = (theme) => ({ stepper: { - backgroundColor: theme.palette.primary.main, + backgroundColor: fade(theme.palette.primary.main, 0.6), width: 'calc(100% - 40px)', - opacity: 0.6, + // opacity: 0.6, borderRadius: '25px', padding: '0 20px', - margin: '20px 0' + margin: '20px 0', + display: 'flex', + justifyContent: 'space-between' + }, + color: { + backgroundColor: 'transparent ' } }); @@ -42,15 +53,29 @@ class Tutorial extends Component { {/* Stepper */}