mirror of
https://github.com/supleed2/udlink-docs.git
synced 2024-12-22 06:05:50 +00:00
Fix Alchemy badge pointer bounds
This commit is contained in:
parent
45c94dc0be
commit
e3c1801864
14
index.html
14
index.html
|
@ -148,14 +148,12 @@
|
|||
select a specific gateway, or use one of the extra features like Opensea or Block Explorer linking</p>
|
||||
</div>
|
||||
<br>
|
||||
<a href="#">
|
||||
<picture>
|
||||
<source srcset="https://static.alchemyapi.io/images/marketing/badgeLight.png"
|
||||
media="(prefers-color-scheme: light)" />
|
||||
<img onclick=logBadgeClick() id="badge-button" src="https://static.alchemyapi.io/images/marketing/badge.png"
|
||||
alt="Alchemy Supercharged" />
|
||||
</picture>
|
||||
</a>
|
||||
<picture class="alchemy-badge">
|
||||
<source srcset="https://static.alchemyapi.io/images/marketing/badgeLight.png"
|
||||
media="(prefers-color-scheme: light)" />
|
||||
<img onclick=logBadgeClick() id="badge-button" src="https://static.alchemyapi.io/images/marketing/badge.png"
|
||||
alt="Alchemy Supercharged" />
|
||||
</picture>
|
||||
<br>
|
||||
<div class="social-icons">
|
||||
<a class="social-icon" href="https://twitter.com/udlinkofficial">
|
||||
|
|
|
@ -294,12 +294,15 @@ body::-webkit-scrollbar {
|
|||
margin: 0px 10%;
|
||||
}
|
||||
|
||||
a>picture {
|
||||
.alchemy-badge {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.alchemy-badge>img {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#badge-button {
|
||||
width: calc(min(240px, 80%));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue