Commit 0f4a89d9 authored by pp-hh-ii-ll's avatar pp-hh-ii-ll Committed by GitHub

fix: update Unisocks status icon and positioning (#4582)

* fix: update Unisocks status icon and positioning

Updates design of Unisocks icon and adjusts positioning to suit new design

* Update StatusIcon.tsx
parent 0d0ec12d
This diff is collapsed.
...@@ -3,7 +3,6 @@ import { ConnectionType } from 'connection' ...@@ -3,7 +3,6 @@ import { ConnectionType } from 'connection'
import { NavBarVariant, useNavBarFlag } from 'featureFlags/flags/navBar' import { NavBarVariant, useNavBarFlag } from 'featureFlags/flags/navBar'
import useENSAvatar from 'hooks/useENSAvatar' import useENSAvatar from 'hooks/useENSAvatar'
import styled from 'styled-components/macro' import styled from 'styled-components/macro'
import { colors } from 'theme/colors'
import CoinbaseWalletIcon from '../../assets/images/coinbaseWalletIcon.svg' import CoinbaseWalletIcon from '../../assets/images/coinbaseWalletIcon.svg'
import WalletConnectIcon from '../../assets/images/walletConnectIcon.svg' import WalletConnectIcon from '../../assets/images/walletConnectIcon.svg'
...@@ -29,20 +28,18 @@ const IconWrapper = styled.div<{ size?: number }>` ...@@ -29,20 +28,18 @@ const IconWrapper = styled.div<{ size?: number }>`
const SockContainer = styled.div` const SockContainer = styled.div`
position: absolute; position: absolute;
background-color: ${colors.pink400};
display: flex; display: flex;
justify-content: center; justify-content: center;
border-radius: 50%; border-radius: 50%;
width: 16px; width: 16px;
height: 16px; height: 16px;
bottom: -5px; bottom: -4px;
right: -5px; right: -4px;
` `
const SockImg = styled.img` const SockImg = styled.img`
width: 7.5px; width: 16px;
height: 10px; height: 16px;
margin-top: 3px;
` `
const Socks = () => { const Socks = () => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment