Skip to content

Commit

Permalink
Merge pull request #661 from blockchain/fix/language-ui
Browse files Browse the repository at this point in the history
Fix/language ui
  • Loading branch information
plondon committed Jun 23, 2018
2 parents 064df72 + 810daf2 commit 2f8d11d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const AddressBox = styled.span`
background-color: ${props => props.theme['gray-1']};
`
const CopyButton = styled(Button)`
width: 100px;
width: 160px;
min-width: 0;
height: 100%;
border-radius: 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@ import { Link } from 'blockchain-info-components'

const Wrapper = styled.div`
display: flex;
justify-content: space-around;
flex-wrap: wrap;
align-items: center;
justify-content: space-around;
`
const Circle = styled.div`
display: block;
width: 10px;
height: 10px;
border-radius: 5px;
border: 1px solid ${props => props.theme['gray-2']};
background: ${props => props.theme['gray-2']};
`

const Footer = () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ const EmailButton = styled(Button)`
width: 100px;
font-size: 12px;
min-width: 0px;
height: auto;
span {
white-space: initial;
}
@media (min-width: 320px) and (max-width: 991px) {
font-size: 14px;
width: 140px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ const StepText = styled(Text)`
max-width: 86px;
margin-left: 5px;
margin-right: 5px;
word-break: break-word;
color: ${props => props.success ? props.theme['white'] : props.theme['brand-primary']};
`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ const BackupButton = styled(Button)`
width: 100px;
font-size: 12px;
min-width: 0px;
height: auto;
span {
white-space: initial;
}
@media (min-width: 400px) and (max-width: 991px) {
font-size: 14px;
width: 140px;
Expand Down

0 comments on commit 2f8d11d

Please sign in to comment.