Closed CarlosMealha closed 2 years ago
Already changed the .md
files to .js
, because there were some problems testing TermsAndConditionsPage
and PrivacyAndPolicyPage
, and still don't know if the tests that I've done are enough.
Okay, I will see what I can do to make it more consistent! Do you prefer PP title or T&C?
Currently the pages are looking like this, but I'm using <b>
instead of useStyles, because when I try to use it, the page is all white. The useStyles that I was using looks like this:
const useStyles = makeStyles ({ bold: { fontWeight: 600, }, });
And to call it in the content function, I used:
<Typography className={ classes.bold }>
If you have any idea about how I can solve this problem, please tell me, otherwise I will use <b>
Currently the pages are looking like this, but I'm using
<b>
instead of useStyles, because when I try to use it, the page is all white. The useStyles that I was using looks like this:const useStyles = makeStyles ({ bold: { fontWeight: 600, }, });
And to call it in the content function, I used:<Typography className={ classes.bold }>
If you have any idea about how I can solve this problem, please tell me, otherwise I will use
<b>
const classes = useStyles();
should be inside the component.
Okay, I will see what I can do to make it more consistent! Do you prefer PP title or T&C?
PP title.
Currently the pages are looking like this, but I'm using
<b>
instead of useStyles, because when I try to use it, the page is all white. The useStyles that I was using looks like this:const useStyles = makeStyles ({ bold: { fontWeight: 600, }, });
And to call it in the content function, I used:<Typography className={ classes.bold }>
If you have any idea about how I can solve this problem, please tell me, otherwise I will use<b>
const classes = useStyles();
should be inside the component.
I have already done that, but it keeps returning white screen.
Currently the pages are looking like this, but I'm using
<b>
instead of useStyles, because when I try to use it, the page is all white. The useStyles that I was using looks like this:const useStyles = makeStyles ({ bold: { fontWeight: 600, }, });
And to call it in the content function, I used:<Typography className={ classes.bold }>
If you have any idea about how I can solve this problem, please tell me, otherwise I will use<b>
const classes = useStyles();
should be inside the component.I have already done that, but it keeps returning white screen.
I still need to move the gray CSS property to the AppTheme.
Update this broken link.
Update this broken link.
Okay, it's already done.
Rebase and it's ready
Rebase and it's ready
Okay, I'll do it now.
closes #185 Hey there, the Privacy Policy and Terms and Condition pages are already done, just need to style
.md
files.