Skip to content

Commit aeafc75

Browse files
committed
feat: Добавил логотип arda
1 parent 43e58d5 commit aeafc75

File tree

3 files changed

+49
-1
lines changed

3 files changed

+49
-1
lines changed

packages/core-design/src/components/Footer/BottomLinksAndLanguages/BottomLinksAndLanguages.styles.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

packages/core-design/src/components/Footer/BottomLinksAndLanguages/BottomLinksAndLanguages.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import Text from '../../Text'
88

99
/* tslint:disable */
1010
const Icon = require('../../../static/icons/footer/alliance.svg')
11+
const ArdaIcon = require('../../../static/icons/footer/arda.svg')
1112
/* tslint:enable */
1213

1314
export 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"
Lines changed: 28 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)