Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/pages/Downloads/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,17 +164,17 @@ export function WrapGlobalDownloadButton (
const subItems = isMacOS ? (
<div className="sub-items flex flex-col absolute top-5 right-0 w-full pt-6">
<div className="sub-items-inner">
<a className={'block'} href={resolveDownloadHref(appState, active, isIOS, 'macos-x64')}>
<a className={'block'} href={resolveDownloadHref(appState, active, isIOS, 'macos-arm64')}>
<div className="flex items-center">
<div className="flex pr-2">
<IntelIcon className={'bg-black w-8 h-8'}/>
<M1Icon className={'bg-black w-8 h-8'}/>
</div>

<div
className={'w-full flex flex-col opacity-80'}
>
<span className="text-sm">
Intel chip
Apple silicon (ARM)
</span>
<span className="text-[11px] opacity-60">
Macs from before November 2020
Expand All @@ -183,20 +183,20 @@ export function WrapGlobalDownloadButton (
</div>
</a>

<a className={'block'} href={resolveDownloadHref(appState, active, isIOS, 'macos-arm64')}>
<a className={'block'} href={resolveDownloadHref(appState, active, isIOS, 'macos-x64')}>
<div className="flex items-center">
<div className="flex pr-2">
<M1Icon className={'bg-black w-8 h-8'}/>
<IntelIcon className={'bg-black w-8 h-8'}/>
</div>

<div
className={'w-full flex flex-col opacity-80'}
>
<span className="text-sm">
Apple silicon
Intel chip (x64)
</span>
<span className="text-[11px] opacity-60">
Macs from November 2020 and later
Older macOS devices with Intel processors
</span>
</div>
</div>
Expand Down