-
-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
290 additions
and
156 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
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from 'react'; | ||
import { Section } from '../section/Section'; | ||
import { Title } from '../typography/Styled'; | ||
import { LoadingCard } from './LoadingCard'; | ||
import styled from 'styled-components'; | ||
import { textColor, mediaWidths } from '../../styles/Themes'; | ||
|
||
const StyledTitle = styled(Title)` | ||
font-size: 28px; | ||
color: ${textColor}; | ||
@media (${mediaWidths.mobile}) { | ||
font-size: 16px; | ||
} | ||
`; | ||
|
||
export const LoadingView = () => ( | ||
<Section padding={'40px 0 60px'}> | ||
<StyledTitle>Connecting to your node...</StyledTitle> | ||
<Section padding={'16px 0 0'}> | ||
<LoadingCard noCard={true} /> | ||
</Section> | ||
</Section> | ||
); |
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,10 @@ | ||
import styled from 'styled-components'; | ||
|
||
export const PageWrapper = styled.div` | ||
position: relative; | ||
min-height: 100vh; | ||
`; | ||
|
||
export const HeaderBodyWrapper = styled.div` | ||
padding-bottom: 250px; | ||
`; |
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,87 @@ | ||
import styled from 'styled-components'; | ||
import { headerTextColor, fontColors, mediaWidths } from '../../styles/Themes'; | ||
import { HomeButton } from '../../views/homepage/HomePage.styled'; | ||
|
||
export const FooterWrapper = styled.div` | ||
position: absolute; | ||
bottom: 0; | ||
width: 100%; | ||
height: 250px; | ||
`; | ||
|
||
export const FooterStyle = styled.div` | ||
padding: 40px 0 16px; | ||
min-height: 250px; | ||
color: ${headerTextColor}; | ||
display: flex; | ||
justify-content: space-between; | ||
@media (${mediaWidths.mobile}) { | ||
flex-direction: column; | ||
padding: 0 0 40px; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
`; | ||
|
||
export const SideFooter = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: flex-start; | ||
align-items: flex-start; | ||
@media (${mediaWidths.mobile}) { | ||
width: 100%; | ||
justify-content: center; | ||
align-items: center; | ||
text-align: center; | ||
} | ||
`; | ||
|
||
export const RightFooter = styled(SideFooter)` | ||
justify-content: flex-start; | ||
align-items: flex-end; | ||
width: 80%; | ||
@media (${mediaWidths.mobile}) { | ||
margin-top: 32px; | ||
} | ||
`; | ||
|
||
export const Title = styled.div` | ||
font-weight: 800; | ||
color: ${headerTextColor}; | ||
`; | ||
|
||
export const SideText = styled.p` | ||
font-size: 14px; | ||
color: ${fontColors.grey7}; | ||
@media (${mediaWidths.mobile}) { | ||
padding-right: 0; | ||
} | ||
`; | ||
|
||
export const CopyrightText = styled(SideText)` | ||
font-size: 12px; | ||
color: ${fontColors.blue}; | ||
`; | ||
|
||
export const StyledRouter = styled.div` | ||
margin-top: 16px; | ||
${HomeButton} { | ||
font-size: 14px; | ||
} | ||
`; | ||
|
||
export const Line = styled.div` | ||
display: flex; | ||
justify-content: center; | ||
align-items: flex-end; | ||
`; | ||
|
||
export const Version = styled.div` | ||
font-size: 12px; | ||
margin-left: 8px; | ||
`; |
Oops, something went wrong.