Skip to content

Commit

Permalink
refactor: change code to use materialUI
Browse files Browse the repository at this point in the history
Refs: #955
  • Loading branch information
ramankala committed Nov 10, 2023
1 parent 29ab5bd commit a38c678
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 5 additions & 1 deletion products/statement-generator/src/components/FormHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ const useStyles = makeStyles<Theme>(
marginTop: spacing(1),
fontSize: typography.fontSize,
},
formTitle: {
marginTop: '12px',
marginBottom: '10px',
},
})
);

Expand Down Expand Up @@ -168,7 +172,7 @@ const FormHeader = () => {
return (
<div className={classes.outerWrapper}>
<div className={classes.formHeader}>
<h3 className="formTitle">{formTitle}</h3>
<h3 className={classes.formTitle}>{formTitle}</h3>

<ProgressBar percentage={percentageComplete} />
</div>
Expand Down
4 changes: 0 additions & 4 deletions products/statement-generator/src/styles/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,3 @@ code {
ul {
padding-left: 2rem;
}

.formTitle {
margin-top: 10px;
}

0 comments on commit a38c678

Please sign in to comment.