-
Notifications
You must be signed in to change notification settings - Fork 0
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 #360 from LinkdropHQ/dev
RELEASE 2.2.27
- Loading branch information
Showing
39 changed files
with
457 additions
and
344 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
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
40 changes: 23 additions & 17 deletions
40
src/components/pages/claim-page/claiming-process/styled-components.tsx
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,28 +1,34 @@ | ||
import styled from 'styled-components' | ||
import { Title, Text, Button } from 'components/common' | ||
import { Button, Text, TokenImage, Title } from 'components/common' | ||
|
||
export const Container = styled.div` | ||
width: 100%; | ||
display: flex; | ||
align-items: center; | ||
flex-direction: column; | ||
text-align: center; | ||
export const TitleComponent = styled(Title)` | ||
margin: 0 0 16px; | ||
font-weight: 600; | ||
` | ||
|
||
export const ScreenTitle = styled(Title)` | ||
margin-bottom: 30px; | ||
font-weight: 600; | ||
export const Subtitle = styled.h3` | ||
font-size: 16px; | ||
color: ${props => props.theme.primaryTextColor}; | ||
font-weight: 400; | ||
margin: 0 0 36px; | ||
` | ||
|
||
export const ScreenSubtitle = styled(Text)` | ||
margin-bottom: 36px; | ||
color: ${props => props.theme.additionalTextColor}; | ||
export const Container = styled.div` | ||
text-align: center; | ||
max-width: 343px; | ||
` | ||
|
||
export const ButtonComponent = styled(Button)` | ||
export const ScreenButton = styled(Button)` | ||
max-width: 100%; | ||
width: 100%; | ||
margin-bottom: 16px; | ||
` | ||
|
||
export const IconContainer = styled.div` | ||
margin-bottom: 35px; | ||
` | ||
export const TokenImageContainer = styled(TokenImage)` | ||
margin: 0 auto 25px; | ||
background: ${props => props.theme.widgetColor}; | ||
` | ||
|
||
export const UserAddress = styled.span` | ||
color: ${props => props.theme.linkColor}; | ||
` |
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
Oops, something went wrong.