Skip to content

Commit

Permalink
feat: Добавил логотип arda
Browse files Browse the repository at this point in the history
  • Loading branch information
M1kEk1M committed May 4, 2023
1 parent 43e58d5 commit aeafc75
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ const base = (props: ThemeProps) => {
margin-left: ${calcRem(40)};
}
.arda {
height: 10px;
padding-right: 60%;
}
.alliance-icon {
margin: 0 ${calcRem(4)};
}
Expand Down Expand Up @@ -80,6 +85,12 @@ const base = (props: ThemeProps) => {
margin-left: 0;
}
.arda {
height: 10px;
padding-right: 0;
margin-top: 24px;
}
.lng-link {
display: none;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import Text from '../../Text'

/* tslint:disable */
const Icon = require('../../../static/icons/footer/alliance.svg')
const ArdaIcon = require('../../../static/icons/footer/arda.svg')
/* tslint:enable */

export interface Props {
Expand Down Expand Up @@ -48,7 +49,11 @@ const PrivacyAndLanguageLinks: React.FC<Props> = ({
return (
<ul className={className}>
<li>
<Link className="link lng-link" href={languageLink.href} data-testid="Footer:link.language-link">
<Link
className="link lng-link"
href={languageLink.href}
data-testid="Footer:link.language-link"
>
<Text
className="link-text"
dangerouslySetInnerHTML={{ __html: languageLink.text }}
Expand Down Expand Up @@ -98,6 +103,10 @@ const PrivacyAndLanguageLinks: React.FC<Props> = ({
</a>
)}

<span>
<ArdaIcon className="arda" />
</span>

{cookiesPolicyLink && (
<CookiesPolicyComponent
className="link cookies-link"
Expand Down
28 changes: 28 additions & 0 deletions packages/core-design/src/static/icons/footer/arda.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit aeafc75

Please sign in to comment.