@@ -37,7 +37,12 @@ export const TwitchResetPasswordEmail = ({
37
37
< Preview > You updated the password for your Twitch account</ Preview >
38
38
< Container style = { container } >
39
39
< Section style = { logo } >
40
- < Img width = { 114 } src = { `${ baseUrl } /static/twitch-logo.png` } />
40
+ < Img
41
+ width = { 114 }
42
+ src = { `${ baseUrl } /static/twitch-logo.png` }
43
+ alt = "Twitch"
44
+ style = { logoImg }
45
+ />
41
46
</ Section >
42
47
< Section style = { sectionsBorders } >
43
48
< Row >
@@ -55,7 +60,7 @@ export const TwitchResetPasswordEmail = ({
55
60
</ Text >
56
61
< Text style = { paragraph } >
57
62
However if you did NOT perform this password change, please{ ' ' }
58
- < Link href = "# " style = { link } >
63
+ < Link href = "https://www.twitch.tv " style = { link } >
59
64
reset your account password
60
65
</ Link > { ' ' }
61
66
immediately.
@@ -64,13 +69,13 @@ export const TwitchResetPasswordEmail = ({
64
69
Remember to use a password that is both strong and unique to your
65
70
Twitch account. To learn more about how to create a strong and
66
71
unique password,{ ' ' }
67
- < Link href = "# " style = { link } >
72
+ < Link href = "https://www.twitch.tv " style = { link } >
68
73
click here.
69
74
</ Link >
70
75
</ Text >
71
76
< Text style = { paragraph } >
72
77
Still have questions? Please contact{ ' ' }
73
- < Link href = "# " style = { link } >
78
+ < Link href = "https://www.twitch.tv " style = { link } >
74
79
Twitch Support
75
80
</ Link >
76
81
</ Text >
@@ -85,10 +90,16 @@ export const TwitchResetPasswordEmail = ({
85
90
< Section style = { footer } >
86
91
< Row >
87
92
< Column align = "right" style = { { width : '50%' , paddingRight : '8px' } } >
88
- < Img src = { `${ baseUrl } /static/twitch-icon-twitter.png` } />
93
+ < Img
94
+ src = { `${ baseUrl } /static/twitch-icon-twitter.png` }
95
+ alt = "Twitter"
96
+ />
89
97
</ Column >
90
98
< Column align = "left" style = { { width : '50%' , paddingLeft : '8px' } } >
91
- < Img src = { `${ baseUrl } /static/twitch-icon-facebook.png` } />
99
+ < Img
100
+ src = { `${ baseUrl } /static/twitch-icon-facebook.png` }
101
+ alt = "Facebook"
102
+ />
92
103
</ Column >
93
104
</ Row >
94
105
< Row >
@@ -138,15 +149,15 @@ const content = {
138
149
} ;
139
150
140
151
const logo = {
141
- display : 'flex' ,
142
- justifyContent : 'center' ,
143
- alingItems : 'center' ,
144
152
padding : 30 ,
145
153
} ;
146
154
155
+ const logoImg = {
156
+ margin : '0 auto' ,
157
+ } ;
158
+
147
159
const sectionsBorders = {
148
160
width : '100%' ,
149
- display : 'flex' ,
150
161
} ;
151
162
152
163
const sectionBorder = {
0 commit comments