The easiest and quickest solution for this issue was to remove Typography in the approvalTextbox and replace it with <div>. This was the only place where the font differed. If we want to change the overall font we can do it in globals.css. In addition to being the easiest solution, I also believe it is more convenient as Typography includes some styling such as padding. This might not always be wanted as we have some limited space for several components. meaning that we have to override and remove it.
fix 65
The easiest and quickest solution for this issue was to remove
Typography
in theapprovalTextbox
and replace it with<div>
. This was the only place where the font differed. If we want to change the overall font we can do it inglobals.css
. In addition to being the easiest solution, I also believe it is more convenient asTypography
includes some styling such as padding. This might not always be wanted as we have some limited space for several components. meaning that we have to override and remove it.