slightly redesigned modal

pull/321/head
slowbackspace 5 years ago
parent c371159e00
commit bbd5420f15

@ -6,7 +6,7 @@ import styled from 'styled-components';
import icons from 'config/icons';
import colors from 'config/colors';
import { LINE_HEIGHT, FONT_SIZE } from 'config/variables';
import { LINE_HEIGHT, FONT_SIZE, FONT_WEIGHT } from 'config/variables';
import P from 'components/Paragraph';
import Icon from 'components/Icon';
@ -21,7 +21,6 @@ type Props = {
const Wrapper = styled.div`
width: 390px;
padding: 12px 10px;
`;
const Header = styled.div`
@ -32,16 +31,27 @@ const Content = styled.div`
border-top: 1px solid ${colors.DIVIDER};
background: ${colors.MAIN};
padding: 24px 48px;
border-radius: 4px;
`;
const StyledP = styled(P)`
padding-bottom: 20px;
color: ${colors.TEXT};
font-size: ${FONT_SIZE.BASE};
&:last-child {
padding-bottom: 0px;
}
`;
const Address = styled(StyledP)`
word-wrap: break-word;
padding: 5px 0;
padding-bottom: 26px;
line-height: ${LINE_HEIGHT.SMALL};
`;
const Label = styled.div`
padding-top: 5px;
padding-bottom: 6px;
font-weight: ${FONT_WEIGHT.MEDIUM};
font-size: ${FONT_SIZE.SMALL};
color: ${colors.TEXT_SECONDARY};
`;
@ -64,11 +74,11 @@ const ConfirmSignTx = (props: Props) => {
</Header>
<Content>
<Label>Send</Label>
<P>{`${amount} ${currency}` }</P>
<StyledP>{`${amount} ${currency}` }</StyledP>
<Label>To</Label>
<StyledP>{ address }</StyledP>
<Address>{ address }</Address>
<Label>Fee</Label>
<P>{ selectedFeeLevel.label }</P>
<StyledP>{ selectedFeeLevel.label }</StyledP>
</Content>
</Wrapper>
);

Loading…
Cancel
Save