File tree 1 file changed +5
-3
lines changed
web/src/pages/Settings/EmailConfirmation
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,8 @@ const InfoWrapper = styled.div`
48
48
const textCss = css `
49
49
margin: 0;
50
50
text-align: center;
51
+ white-space: pre-line;
52
+
51
53
${ landscapeStyle (
52
54
( ) => css `
53
55
text-align: left;
@@ -57,15 +59,15 @@ const textCss = css`
57
59
58
60
const Header = styled . h1 < { fontColor : string } > `
59
61
${ textCss }
60
- white-space: pre-line;
61
62
${ ( { fontColor } ) =>
62
63
css `
63
- color: ${ fontColor } ;
64
+ color: ${ ( { theme } ) => theme [ fontColor ] } ;
64
65
` } ;
65
66
` ;
66
67
67
68
const Subtitle = styled . h3 `
68
69
${ textCss }
70
+ max-width: 735px;
69
71
` ;
70
72
71
73
const HeaderIconContainer = styled . div < { iconColor : string } > `
@@ -75,7 +77,7 @@ const HeaderIconContainer = styled.div<{ iconColor: string }>`
75
77
${ ( { iconColor } ) =>
76
78
css `
77
79
path {
78
- fill: ${ iconColor } ;
80
+ fill: ${ ( { theme } ) => theme [ iconColor ] } ;
79
81
}
80
82
` }
81
83
}
You can’t perform that action at this time.
0 commit comments