Skip to content

Commit

Permalink
1.0.3 - fix support section overflow bug #50
Browse files Browse the repository at this point in the history
1.0.3 - fix support section overflow bug
  • Loading branch information
Darken141 authored Mar 2, 2023
2 parents 4e69764 + c68ab07 commit 4182403
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions components/support-section/support-section.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,27 +59,31 @@ const SupportSection: React.FC = () => {
<Image
src="/assets/support-section/talisman-v2.svg"
alt="talisman"
width={"100%"}
height={"100%"}
/>
</a>
<a href="https://polkadot.js.org/extension/">
<Image
src="/assets/support-section/polkadot-v2.svg"
alt="polkadot"
width={"100%"}
height={"100%"}
/>
</a>
<a href="https://subwallet.app/">
<Image
src="/assets/support-section/sub-wallet-v2.png"
alt="subwallet"
width={"100%"}
height={"100%"}
/>
</a>
<a href="https://www.enkrypt.com/">
<Image
src="/assets/support-section/enkrypt-logo-color-v2.png"
alt="enkrypt"
width={"100%"}
height={"100%"}
/>
</a>
Expand All @@ -93,6 +97,7 @@ const SupportSection: React.FC = () => {
<Image
src="/assets/support-section/nova-v3.png"
alt="Nova"
width={"100%"}
height={"100%"}
/>
</a>
Expand Down Expand Up @@ -203,12 +208,23 @@ const PartnersDirectory = styled.div`
width: 100%;
height: 4.2rem;
a {
display: block;
width: 4.2rem;
}
@media all and (min-width: ${({ theme }) => theme.breakpoints.sm}) {
justify-content: flex-start;
height: 3.2rem;
a {
width: 3.2rem;
}
@media all and (min-width: ${({ theme }) => theme.breakpoints.lg}) {
height: 6rem;
a {
width: 6.2rem;
}
}
}
`

0 comments on commit 4182403

Please sign in to comment.