diff --git a/packages/extension-ui/src/Popup/Accounts/index.tsx b/packages/extension-ui/src/Popup/Accounts/index.tsx index fa63a2112dc..12cc3a24cfe 100644 --- a/packages/extension-ui/src/Popup/Accounts/index.tsx +++ b/packages/extension-ui/src/Popup/Accounts/index.tsx @@ -3,6 +3,7 @@ // of the Apache-2.0 license. See the LICENSE file for details. import React, { useContext } from 'react'; +import QrImage from '../../assets/qr.svg'; import { AccountContext, @@ -15,6 +16,41 @@ import { VerticalSpace } from '../../components'; import Account from './Account'; +import styled from 'styled-components'; + +const ButtonWithSubtitle = styled(Button)` + margin-right: 8px; + + button { + padding-top: 0; + padding-bottom: 0; + } + h4 { + margin: 0; + font-weight: 600; + font-size: 15px; + line-height: 20px; + } + p { + margin: 0; + font-weight: 400; + font-size: 12px; + line-height: 16px; + } +`; + +const QrButton = styled(Button)` + width: 60px; + + span { + width: 20px; + height: 20px; + display: block; + mask: url(${QrImage}); + mask-size: cover; + background: ${({ theme }): string => theme.color}; + } +`; type Props = {}; @@ -47,19 +83,18 @@ export default function Accounts (): React.ReactElement { } -