1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-04-05 18:06:11 +00:00

switch to new attrs syntax

This commit is contained in:
slowbackspace 2018-12-17 22:24:39 +01:00 committed by Szymon Lesisz
parent 1878c6beb4
commit a189218b9d
2 changed files with 14 additions and 17 deletions

View File

@ -19,11 +19,10 @@ type State = {
footerFixed: boolean,
}
const AsideWrapper = styled.aside.attrs({
style: ({ minHeight }) => ({
minHeight,
}),
})`
const AsideWrapper = styled.aside.attrs(props => ({
style: { minHeight: props.minHeight },
}))`
position: relative;
top: 0px;
width: 320px;
@ -33,13 +32,13 @@ const AsideWrapper = styled.aside.attrs({
border-right: 1px solid ${colors.DIVIDER};
`;
const StickyContainerWrapper = styled.div.attrs({
style: ({ top, left, paddingBottom }) => ({
top,
left,
paddingBottom,
}),
})`
const StickyContainerWrapper = styled.div.attrs(props => ({
style: {
top: props.top,
left: props.left,
paddingBottom: props.paddingBottom,
},
}))`
position: fixed;
border-right: 1px solid ${colors.DIVIDER};
width: 320px;

View File

@ -45,11 +45,9 @@ const TransitionContentWrapper = styled.div`
vertical-align: top;
`;
const Footer = styled.div.attrs({
style: ({ position }) => ({
position,
}),
})`
const Footer = styled.div.attrs(props => ({
style: { position: props.position },
}))`
width: 320px;
bottom: 0;
background: ${colors.MAIN};