Fixed architecture cards height

This commit is contained in:
Zhenya Goroh
2024-09-30 18:34:24 +03:00
parent 3cca261161
commit 0501e6dd45

View File

@@ -363,11 +363,11 @@ export default function DownloadPage() {
Choose the architecture of your device, either optimized or Choose the architecture of your device, either optimized or
generic. generic.
</FieldDescription> </FieldDescription>
<div className="flex items-center justify-center"> <div className="flex items-stretch justify-center">
<div <div
onClick={() => setSelectedArchitecture("specific")} onClick={() => setSelectedArchitecture("specific")}
className={ny( className={ny(
"mb-2 flex h-full w-full cursor-pointer select-none flex-col items-center rounded-lg border bg-background p-5", "mb-2 flex flex-1 cursor-pointer select-none flex-col items-center rounded-lg border bg-background p-5",
selectedArchitecture === "specific" selectedArchitecture === "specific"
? "border-blue-400" ? "border-blue-400"
: "", : "",
@@ -384,7 +384,7 @@ export default function DownloadPage() {
<div <div
onClick={() => setSelectedArchitecture("generic")} onClick={() => setSelectedArchitecture("generic")}
className={ny( className={ny(
"mb-2 ml-10 flex h-full w-full cursor-pointer select-none flex-col items-center rounded-lg border bg-background p-5", "mb-2 ml-10 flex flex-1 cursor-pointer select-none flex-col items-center rounded-lg border bg-background p-5",
selectedArchitecture === "generic" selectedArchitecture === "generic"
? "border-blue-400" ? "border-blue-400"
: "", : "",