diff --git a/src/js/components/Footer/index.js b/src/js/components/Footer/index.js index 5682d175..d0b66f29 100644 --- a/src/js/components/Footer/index.js +++ b/src/js/components/Footer/index.js @@ -6,16 +6,15 @@ import { getYear } from 'date-fns'; import { bindActionCreators } from 'redux'; import { connect } from 'react-redux'; - import colors from 'config/colors'; import * as LogActions from 'actions/LogActions'; const Wrapper = styled.div` width: 100%; font-size: 12px; + background: ${colors.LANDING}; color: ${colors.TEXT_SECONDARY}; padding: 22px 48px; - border-top: 1px solid ${colors.DIVIDER}; display: flex; `; diff --git a/src/js/views/Wallet/components/LeftNavigation/components/Divider/index.js b/src/js/views/Wallet/components/LeftNavigation/components/Divider/index.js index 146af702..0b30e28b 100644 --- a/src/js/views/Wallet/components/LeftNavigation/components/Divider/index.js +++ b/src/js/views/Wallet/components/LeftNavigation/components/Divider/index.js @@ -11,7 +11,7 @@ const Wrapper = styled.div` padding: 8px 28px 8px 24px; font-size: ${FONT_SIZE.SMALLER}; color: ${colors.TEXT_SECONDARY}; - background: ${colors.GRAY_LIGHT}; + background: ${colors.LANDING}; ${props => props.borderTop && css` border-top: 1px solid ${colors.DIVIDER}; `} 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 cec9b90b..5fa3b139 100644 --- a/src/js/views/Wallet/components/LeftNavigation/components/StickyContainer/index.js +++ b/src/js/views/Wallet/components/LeftNavigation/components/StickyContainer/index.js @@ -19,7 +19,6 @@ const AsideWrapper = styled.aside` position: relative; width: 320px; min-width: 320px; - border-right: 1px solid ${colors.DIVIDER}; overflow-x: hidden; background: ${colors.MAIN}; `; diff --git a/src/js/views/Wallet/components/LeftNavigation/index.js b/src/js/views/Wallet/components/LeftNavigation/index.js index 7e1918e0..53da87e0 100644 --- a/src/js/views/Wallet/components/LeftNavigation/index.js +++ b/src/js/views/Wallet/components/LeftNavigation/index.js @@ -24,7 +24,6 @@ const StickyBottom = styled.div` position: fixed; bottom: 0; background: ${colors.MAIN}; - border-right: 1px solid ${colors.DIVIDER}; `; const MenuWrapper = styled.div` diff --git a/src/styles/aside.less b/src/styles/aside.less index c18d19c0..f1714f1d 100644 --- a/src/styles/aside.less +++ b/src/styles/aside.less @@ -2,7 +2,6 @@ aside { position: relative; width: 320px; min-width: 320px; - border-right: 1px solid @color_divider; overflow-x: hidden; .sticky-container {