Skip to content
This repository was archived by the owner on Mar 7, 2024. It is now read-only.

Commit 3f3e691

Browse files
Temp br (#188)
* dark mode problems on mac * Update Success.js * macbook dark theme problem
1 parent 248e50e commit 3f3e691

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

src/views/pages/Course/Schedule.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ function LimitedTimeBookNow() {
304304
}}
305305
>
306306
<Typography variant="h2" color="secondary" style={{ marginTop: '80px' }}>
307-
Book your Seat Now-{' '}
307+
Book your Seat Now{' '}
308308
</Typography>
309309
<Typography
310310
variant="h3"

src/views/pages/PaymentStatus/Failure.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ import CustomButton from '../../../components/Button/ButtonComponent'
44

55
const useStyles = makeStyles((theme) => ({
66
root: {
7-
marginTop: '35vh',
7+
backgroundColor: theme.palette.background.default,
8+
marginTop: '30vh',
89
textAlign: 'center',
9-
color: theme.palette.text
10+
color: '#000',
11+
padding: theme.spacing(5)
1012
},
1113
button: {
1214
marginTop: '40px'
@@ -19,7 +21,7 @@ export default function Success() {
1921
if (true) {
2022
return (
2123
<div className={classes.root}>
22-
<Typography align="center">Your last payment to codeforcause was Failed. You can retry the payment on the course website.</Typography>
24+
<Typography align="center">Your last payment to codeforcause was Failed. You can retry the payment from the course website.</Typography>
2325
<Typography align="center">Connect with us at {` `}
2426
<Link
2527
href="mailto:[email protected]"

src/views/pages/PaymentStatus/Success.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ import React from 'react';
33
import CustomButton from '../../../components/Button/ButtonComponent'
44

55
const useStyles = makeStyles((theme) => ({
6-
root: {
7-
marginTop: '35vh',
6+
root: {
7+
backgroundColor: theme.palette.background.default,
8+
marginTop: '30vh',
89
textAlign: 'center',
9-
color: theme.palette.text
10+
color: '#000',
11+
padding: theme.spacing(5)
1012
},
1113
button: {
1214
marginTop: '40px'
@@ -19,7 +21,9 @@ export default function Success() {
1921
if (true) {
2022
return (
2123
<div className={classes.root}>
22-
<Typography align="center">Your last payment to codeforcause was successful. We will connect with you within 24 hours with more details.</Typography>
24+
<Typography align="center">Your last payment to codeforcause was successful. We will connect to you within 24 hours with more details and
25+
you'll receive an email from us as well.
26+
</Typography>
2327
<Typography align="center">Connect with us at {` `}
2428
<Link
2529
href="mailto:[email protected]"

0 commit comments

Comments
 (0)