chore(website): hide download buttons on mobile

This commit is contained in:
Elian Doran 2025-09-27 11:34:09 +03:00
parent 3d780d7d02
commit babfc3cfb9
No known key found for this signature in database
2 changed files with 8 additions and 2 deletions

View File

@ -5,7 +5,7 @@
border-radius: 6px;
color: white;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
display: inline-block;
display: none;
}
.download-button .platform {
@ -16,4 +16,10 @@
.download-button.big {
padding: 1em 2em;
margin: 1em 0;
}
@media (min-width: 720px) {
.download-button {
display: inline-block;
}
}

View File

@ -25,7 +25,7 @@ function HeroSection() {
<div className="download-wrapper">
<DownloadButton big />
<a class="more-download-options" href="./download">see all download options</a>
<a class="more-download-options" href="./download">See all download options</a>
</div>
</div>