diff --git a/src/components/TrademarkApplicationPage/TrademarkType/index.js b/src/components/TrademarkApplicationPage/TrademarkType/index.js index b165110..1e2a290 100644 --- a/src/components/TrademarkApplicationPage/TrademarkType/index.js +++ b/src/components/TrademarkApplicationPage/TrademarkType/index.js @@ -3,6 +3,7 @@ import { useHistory } from 'react-router-dom'; import { makeStyles } from '@material-ui/core/styles'; import { checkmarksTheme } from '../../../styles/Themes'; import { Box, Button, Card, Typography } from '@material-ui/core'; +import EventIcon from '@material-ui/icons/Event'; import Alert from '@material-ui/lab/Alert'; import DesignCard from '../TrademarkType/DesignCard'; import DetailSelectCard from '../TrademarkType/DetailSelectCard'; @@ -135,6 +136,15 @@ const TrademarkForm = ({ common characteristic. This is perfectly fine, however discussion with a lawyer is required before submission. + )} {/* */} @@ -162,7 +172,9 @@ const TrademarkForm = ({ type="submit" variant="contained" onClick={() => nextStep()} - disabled={progressValue < step.progressValueEnd} + disabled={ + progressValue < step.progressValueEnd || info.isOther + } > Continue @@ -259,4 +271,21 @@ const useStyles = makeStyles((theme) => ({ margin: '0', }, }, + bookApppintmentButton: { + color: '#FFF', + backgroundColor: '#df3a48', + fontWeight: 'bold', + marginTop: '10%', + // marginLeft: '3%', + width: '100%', + height: '60px', + fontSize: '10px', + borderRadius: '10px', + [theme.breakpoints.up('md')]: { + margin: '5% 3% 5% 0', + }, + [theme.breakpoints.between('sm', 'md')]: { + margin: '6% 2% 1% 0', + }, + }, }));