diff --git a/packages/ui-toolkit/src/styleguide/bottomNav.js b/packages/ui-toolkit/src/styleguide/bottomNav.js index 9b359ac9..17331ca9 100644 --- a/packages/ui-toolkit/src/styleguide/bottomNav.js +++ b/packages/ui-toolkit/src/styleguide/bottomNav.js @@ -1,7 +1,6 @@ import React from 'react'; import remcalc from 'remcalc'; import styled from 'styled-components'; -import { Arrow } from 'joyent-icons'; const BottomNav = styled.div` display: flex; @@ -10,8 +9,6 @@ const BottomNav = styled.div` `; const Link = styled.a` - display: flex; - align-items: center; color: #3b46cc; font-size: 15px; line-height: 24px; @@ -32,16 +29,14 @@ export default props => {
{selectedIndex > 0 ? ( -  {' '} - {items[selectedIndex - 1]} + ← {items[selectedIndex - 1]} ) : null}
{selectedIndex < items.length ? ( - {items[selectedIndex + 1]}  {' '} - + {items[selectedIndex + 1]} → ) : null}