Fixed issue of button-wall overlapping main content on mobile/smaller screens
This commit is contained in:
parent
32ab132f53
commit
4ecf06f903
Binary file not shown.
|
After Width: | Height: | Size: 471 B |
|
|
@ -184,7 +184,7 @@ body::before {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---- 88x31 button wall (always visible) ---- */
|
/* ---- 88x31 button wall (always visible on desktop) ---- */
|
||||||
.button-wall {
|
.button-wall {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 1rem;
|
bottom: 1rem;
|
||||||
|
|
@ -198,6 +198,13 @@ body::before {
|
||||||
max-width: min(90vw, 480px);
|
max-width: min(90vw, 480px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* hide on mobile */
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.button-wall {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.button-wall a {
|
.button-wall a {
|
||||||
display: block;
|
display: block;
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
|
|
|
||||||
|
|
@ -73,6 +73,8 @@
|
||||||
<img src="/assets/88x31/nft.gif" alt="NFT" loading="lazy">
|
<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/noweb32.gif" alt="No Web 3.2" loading="lazy">
|
||||||
<img src="/assets/88x31/meltice.gif" alt="Melt Ice" 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>
|
</aside>
|
||||||
</body>
|
</body>
|
||||||
<script src="js/index.js"></script>
|
<script src="js/index.js"></script>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue