diff --git a/frontend/src/components/article/index.js b/frontend/src/components/article/index.js index 09210628..123833b2 100644 --- a/frontend/src/components/article/index.js +++ b/frontend/src/components/article/index.js @@ -1,14 +1,9 @@ const Styled = require('styled-components'); -// const fns = require('@ui/shared/functions'); const { default: styled } = Styled; -// const { -// remcalc -// } = fns; - // Main Contonent Wrapper Styles module.exports = styled.article` `; diff --git a/frontend/src/components/header/index.js b/frontend/src/components/header/index.js index dd1de46d..ebdc33d4 100644 --- a/frontend/src/components/header/index.js +++ b/frontend/src/components/header/index.js @@ -65,16 +65,20 @@ const StyledName = styled.span` top: -12px; `; +const EmptyButton = styled.button` + background: none; + border: none; +`; + +const StyledAvatar = styled(Avatar)` + marginLeft: 12px; +`; + const arrowPosition = { bottom: '100%', right: '10%' }; -const EmptyButton = styled.button` - background: none - border: none -`; - const Header = ({ account = {}, tooltip = false, @@ -107,27 +111,20 @@ const Header = ({ - + - + - {account.name} - + {account.name} + +