-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #393 from Giveth/develop
Release 0.2.2
- Loading branch information
Showing
56 changed files
with
2,470 additions
and
754 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
name: Design Issue Template | ||
about: Please select this template for any design request. It will automatically add | ||
Design label, feel free to add other labels as needed. | ||
title: '' | ||
labels: Design | ||
assignees: '' | ||
|
||
--- | ||
|
||
**What problem is this design solving? Why is it necessary?** | ||
*A clear and concise description of what the problem is. Link to any relevant issues, PRs, and other resources.* | ||
|
||
|
||
**Is there any user data or feedback backing up this feature request?** | ||
*Share any user research conducted by yourself or others.* | ||
|
||
|
||
**Which metrics will define this feature's success?** | ||
*Provide current and/or expected metrics.* | ||
|
||
|
||
**Additional context** | ||
*Add any other context or screenshots related to your design here.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,16 @@ | ||
import { semanticColors } from '@giveth/ui-design-system'; | ||
import React, { ReactElement } from 'react'; | ||
import styled from 'styled-components'; | ||
|
||
const ExternalLink = (props: { | ||
children: ReactElement | string; | ||
children?: ReactElement[] | ReactElement; | ||
href: string; | ||
title?: string; | ||
}) => { | ||
const { children, href, title } = props; | ||
return ( | ||
<StyledLink href={props.href} rel='noopener noreferrer' target='_blank'> | ||
{props.children} | ||
</StyledLink> | ||
<a href={href} rel='noopener noreferrer' target='_blank'> | ||
{title || children} | ||
</a> | ||
); | ||
}; | ||
|
||
const StyledLink = styled.a` | ||
color: ${semanticColors.blueSky[500]} !important; | ||
`; | ||
|
||
export default ExternalLink; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
72e2727
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs: