aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsptaule <lecas83@gmail.com>2022-02-01 18:30:04 +0100
committersptaule <lecas83@gmail.com>2022-02-01 18:30:04 +0100
commitce7551438fb1ab0d9d770d35f610b3c2676fec23 (patch)
tree5bbefe79cec5c48df35244fdd6b7cc82894005b2
parenta281a5c2681ab4aedddf326a6ca67474ff196c80 (diff)
downloadgaragehq.deuxfleurs.fr-ce7551438fb1ab0d9d770d35f610b3c2676fec23.tar.gz
garagehq.deuxfleurs.fr-ce7551438fb1ab0d9d770d35f610b3c2676fec23.zip
Fix download page design on small screen
-rw-r--r--templates/download.html27
1 files changed, 12 insertions, 15 deletions
diff --git a/templates/download.html b/templates/download.html
index 4d01f35..43d786c 100644
--- a/templates/download.html
+++ b/templates/download.html
@@ -8,11 +8,11 @@
<section id="download-section" class="section">
<div class="relative w-full py-8 flex flex-col items-center justify-center bg-gray-50 shadow-sm">
<h1 class="text-garage-orange font-bold text-2xl text-center">Download</h1>
- <div class="absolute -bottom-8 left-1/2 transform -translate-x-1/2 w-16 overflow-hidden inline-block">
+ <div class="absolute -bottom-8 left-1/2 transform -translate-x-6 w-16 overflow-hidden inline-block">
<div class="h-8 w-8 bg-gradient-to-bl from-gray-50 via-gray-50 to-gray-100 -rotate-45 transform origin-top-left shadow"></div>
</div>
</div>
- <div class="mx-auto max-w-7xl px-8 xl:px-0">
+ <div class="mx-auto max-w-7xl px-4">
<div id="releases-container" class="py-24 space-y-20">
<div id="release-builds">
<h2 class="text-garage-gray text-xl font-semibold">Release Builds</h2>
@@ -86,11 +86,10 @@
<span>${releaseBuilds[i]['version']}</span>
<span class="text-garage-gray font-normal text-sm">${releaseBuilds[i]['builds'][0]['date']}</span>
</h3>
- <div id="release-builds-detail-${i}" class="flex items-center pt-4 space-x-2">
- <span>Binaries</span>
- </div>
- <div id="release-builds-source-${i}" class="flex items-center pt-4 space-x-2">
- <span>Sources</span>
+ <span class="inline-block mt-4 text-sm mb-1 uppercase text-gray-600">Binaries</span>
+ <div id="release-builds-detail-${i}" class="flex flex-col md:flex-row items-start md:items-center space-x-0 md:space-x-2 space-y-2 md:space-y-0"></div>
+ <span class="inline-block mt-4 text-sm mb-1 uppercase text-gray-600">Sources</span>
+ <div id="release-builds-source-${i}" class="flex items-center space-x-2">
<a href="https://git.deuxfleurs.fr/Deuxfleurs/garage/src/tag/${releaseBuilds[i]['version']}" class="inline-block p-1.5 text-garage-gray font-bold bg-gray-300 hover:bg-orange-300 rounded border-b-2 border-gray-400 hover:border-orange-400 transition-all duration-300">
<span>Gitea</span>
</a>
@@ -132,11 +131,10 @@
<span>${extraBuilds[i]['version']}</span>
<span class="text-garage-gray font-normal text-sm">${extraBuilds[i]['builds'][0]['date']}</span>
</h3>
- <div id="extra-builds-detail-${i}" class="flex items-center pt-4 space-x-2">
- <span>Binaries</span>
- </div>
+ <span class="inline-block mt-4 text-sm mb-1 uppercase text-gray-600">Binaries</span>
+ <div id="extra-builds-detail-${i}" class="flex flex-col md:flex-row items-start md:items-center space-x-0 md:space-x-2 space-y-2 md:space-y-0"></div>
+ <span class="inline-block mt-4 text-sm mb-1 uppercase text-gray-600">Sources</span>
<div id="extra-builds-source-${i}" class="flex items-center pt-4 space-x-2">
- <span>Sources</span>
<a href="https://git.deuxfleurs.fr/Deuxfleurs/garage/src/tag/${extraBuilds[i]['version']}" class="inline-block p-1.5 text-garage-gray font-bold bg-gray-300 hover:bg-orange-300 rounded border-b-2 border-gray-400 hover:border-orange-400 transition-all duration-300">
<span>Gitea</span>
</a>
@@ -178,11 +176,10 @@
<span>${developmentBuilds[i]['version']}</span>
<span class="text-garage-gray font-normal text-sm">${developmentBuilds[i]['builds'][0]['date']}</span>
</h3>
- <div id="development-builds-detail-${i}" class="flex items-center pt-4 space-x-2">
- <span>Binaries</span>
- </div>
+ <span class="inline-block mt-4 text-sm mb-1 uppercase text-gray-600">Binaries</span>
+ <div id="development-builds-detail-${i}" class="flex flex-col md:flex-row items-start md:items-center space-x-0 md:space-x-2 space-y-2 md:space-y-0"></div>
+ <span class="inline-block mt-4 text-sm mb-1 uppercase text-gray-600">Sources</span>
<div id="development-builds-source-${i}" class="flex items-center pt-4 space-x-2">
- <span>Sources</span>
<a href="https://git.deuxfleurs.fr/Deuxfleurs/garage/src/tag/${developmentBuilds[i]['version']}" class="inline-block p-1.5 text-garage-gray font-bold bg-gray-300 hover:bg-orange-300 rounded border-b-2 border-gray-400 hover:border-orange-400 transition-all duration-300">
<span>Gitea</span>
</a>