File tree Expand file tree Collapse file tree 3 files changed +49
-1
lines changed
components/Footer/BottomLinksAndLanguages Expand file tree Collapse file tree 3 files changed +49
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,11 @@ const base = (props: ThemeProps) => {
3131 margin-left : ${ calcRem ( 40 ) } ;
3232 }
3333
34+ .arda {
35+ height : 10px ;
36+ padding-right : 60% ;
37+ }
38+
3439 .alliance-icon {
3540 margin : 0 ${ calcRem ( 4 ) } ;
3641 }
@@ -80,6 +85,12 @@ const base = (props: ThemeProps) => {
8085 margin-left : 0 ;
8186 }
8287
88+ .arda {
89+ height : 10px ;
90+ padding-right : 0 ;
91+ margin-top : 24px ;
92+ }
93+
8394 .lng-link {
8495 display : none;
8596 }
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import Text from '../../Text'
88
99/* tslint:disable */
1010const Icon = require ( '../../../static/icons/footer/alliance.svg' )
11+ const ArdaIcon = require ( '../../../static/icons/footer/arda.svg' )
1112/* tslint:enable */
1213
1314export interface Props {
@@ -48,7 +49,11 @@ const PrivacyAndLanguageLinks: React.FC<Props> = ({
4849 return (
4950 < ul className = { className } >
5051 < li >
51- < Link className = "link lng-link" href = { languageLink . href } data-testid = "Footer:link.language-link" >
52+ < Link
53+ className = "link lng-link"
54+ href = { languageLink . href }
55+ data-testid = "Footer:link.language-link"
56+ >
5257 < Text
5358 className = "link-text"
5459 dangerouslySetInnerHTML = { { __html : languageLink . text } }
@@ -98,6 +103,10 @@ const PrivacyAndLanguageLinks: React.FC<Props> = ({
98103 </ a >
99104 ) }
100105
106+ < span >
107+ < ArdaIcon className = "arda" />
108+ </ span >
109+
101110 { cookiesPolicyLink && (
102111 < CookiesPolicyComponent
103112 className = "link cookies-link"
You can’t perform that action at this time.
0 commit comments