diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx index d74eeec2b..c2371d414 100755 --- a/src/components/Header/Header.tsx +++ b/src/components/Header/Header.tsx @@ -18,6 +18,7 @@ import QuickLogo from 'assets/images/quickLogo.png'; import { ReactComponent as ThreeDotIcon } from 'assets/images/ThreeDot.svg'; import { ReactComponent as LightIcon } from 'assets/images/LightIcon.svg'; import WalletIcon from 'assets/images/WalletIcon.png'; +import styled from 'styled-components'; const useStyles = makeStyles(({ palette, breakpoints }) => ({ header: { @@ -228,6 +229,18 @@ const useStyles = makeStyles(({ palette, breakpoints }) => ({ }, })); +const StyledPollingDot = styled.div` + width: 15px; + height: 15px; + min-height: 8px; + min-width: 8px; + margin-left: 0rem; + margin-top: 0px; + border-radius: 50%; + position: relative; + background-color: ${({ theme }) => theme.green1}; +`; + const newTransactionsFirst = (a: TransactionDetails, b: TransactionDetails) => { return b.addedTime - a.addedTime; }; @@ -421,13 +434,14 @@ const Header: React.FC = () => { )} + {account && (!ethereum || isSupportedNetwork(ethereum)) ? (