diff --git a/src/js/views/Wallet/components/LeftNavigation/components/StickyContainer/index.js b/src/js/views/Wallet/components/LeftNavigation/components/StickyContainer/index.js index 9702fffe..cec9b90b 100644 --- a/src/js/views/Wallet/components/LeftNavigation/components/StickyContainer/index.js +++ b/src/js/views/Wallet/components/LeftNavigation/components/StickyContainer/index.js @@ -7,6 +7,7 @@ import * as React from 'react'; import raf from 'raf'; import { getViewportHeight, getScrollY } from 'utils/windowUtils'; import styled from 'styled-components'; +import colors from 'config/colors'; type Props = { location: string, @@ -14,6 +15,15 @@ type Props = { children?: React.Node, } +const AsideWrapper = styled.aside` + position: relative; + width: 320px; + min-width: 320px; + border-right: 1px solid ${colors.DIVIDER}; + overflow-x: hidden; + background: ${colors.MAIN}; +`; + const StickyContainerWrapper = styled.div` position: relative; top: 0; @@ -137,8 +147,8 @@ export default class StickyContainer extends React.PureComponent { render() { return ( - + ); } } \ No newline at end of file