Fixed issue of button-wall overlapping main content on mobile/smaller screens

This commit is contained in:
Ari 2026-06-13 19:24:38 +01:00
parent 32ab132f53
commit 4ecf06f903
3 changed files with 11 additions and 2 deletions

BIN
assets/88x31/transnow2.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 471 B

View File

@ -184,7 +184,7 @@ body::before {
margin-bottom: 10px;
}
/* ---- 88x31 button wall (always visible) ---- */
/* ---- 88x31 button wall (always visible on desktop) ---- */
.button-wall {
position: fixed;
bottom: 1rem;
@ -198,6 +198,13 @@ body::before {
max-width: min(90vw, 480px);
}
/* hide on mobile */
@media (max-width: 768px) {
.button-wall {
display: none;
}
}
.button-wall a {
display: block;
line-height: 0;

View File

@ -73,6 +73,8 @@
<img src="/assets/88x31/nft.gif" alt="NFT" loading="lazy">
<img src="/assets/88x31/noweb32.gif" alt="No Web 3.2" loading="lazy">
<img src="/assets/88x31/meltice.gif" alt="Melt Ice" loading="lazy">
<img src="/assets/88x31/transnow2.gif" alt="Melt Ice" loading="lazy">
</aside>
</body>
<script src="js/index.js"></script>