File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
web/src/pages/Settings/EmailConfirmation Expand file tree Collapse file tree 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`
4848const textCss = css `
4949 margin: 0;
5050 text-align: center;
51+ white-space: pre-line;
52+
5153 ${ landscapeStyle (
5254 ( ) => css `
5355 text-align: left;
@@ -57,15 +59,15 @@ const textCss = css`
5759
5860const Header = styled . h1 < { fontColor : string } > `
5961 ${ textCss }
60- white-space: pre-line;
6162 ${ ( { fontColor } ) =>
6263 css `
63- color: ${ fontColor } ;
64+ color: ${ ( { theme } ) => theme [ fontColor ] } ;
6465 ` } ;
6566` ;
6667
6768const Subtitle = styled . h3 `
6869 ${ textCss }
70+ max-width: 735px;
6971` ;
7072
7173const HeaderIconContainer = styled . div < { iconColor : string } > `
@@ -75,7 +77,7 @@ const HeaderIconContainer = styled.div<{ iconColor: string }>`
7577 ${ ( { iconColor } ) =>
7678 css `
7779 path {
78- fill: ${ iconColor } ;
80+ fill: ${ ( { theme } ) => theme [ iconColor ] } ;
7981 }
8082 ` }
8183 }
You can’t perform that action at this time.
0 commit comments