File tree 3 files changed +49
-1
lines changed
components/Footer/BottomLinksAndLanguages
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) => {
31
31
margin-left : ${ calcRem ( 40 ) } ;
32
32
}
33
33
34
+ .arda {
35
+ height : 10px ;
36
+ padding-right : 60% ;
37
+ }
38
+
34
39
.alliance-icon {
35
40
margin : 0 ${ calcRem ( 4 ) } ;
36
41
}
@@ -80,6 +85,12 @@ const base = (props: ThemeProps) => {
80
85
margin-left : 0 ;
81
86
}
82
87
88
+ .arda {
89
+ height : 10px ;
90
+ padding-right : 0 ;
91
+ margin-top : 24px ;
92
+ }
93
+
83
94
.lng-link {
84
95
display : none;
85
96
}
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import Text from '../../Text'
8
8
9
9
/* tslint:disable */
10
10
const Icon = require ( '../../../static/icons/footer/alliance.svg' )
11
+ const ArdaIcon = require ( '../../../static/icons/footer/arda.svg' )
11
12
/* tslint:enable */
12
13
13
14
export interface Props {
@@ -48,7 +49,11 @@ const PrivacyAndLanguageLinks: React.FC<Props> = ({
48
49
return (
49
50
< ul className = { className } >
50
51
< 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
+ >
52
57
< Text
53
58
className = "link-text"
54
59
dangerouslySetInnerHTML = { { __html : languageLink . text } }
@@ -98,6 +103,10 @@ const PrivacyAndLanguageLinks: React.FC<Props> = ({
98
103
</ a >
99
104
) }
100
105
106
+ < span >
107
+ < ArdaIcon className = "arda" />
108
+ </ span >
109
+
101
110
{ cookiesPolicyLink && (
102
111
< CookiesPolicyComponent
103
112
className = "link cookies-link"
You can’t perform that action at this time.
0 commit comments