From f2e189acc76cd5907435d90ed770be9aeafca118 Mon Sep 17 00:00:00 2001 From: d3v1l0n Date: Sun, 29 Dec 2024 05:03:25 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20style:=20added=20spacing=20in=20the?= =?UTF-8?q?=20lists?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/download/MirrorList.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/components/download/MirrorList.tsx b/src/components/download/MirrorList.tsx index f2d8229c..b721a898 100644 --- a/src/components/download/MirrorList.tsx +++ b/src/components/download/MirrorList.tsx @@ -10,33 +10,33 @@ interface MirrorListProps { export function MirrorList({ mirrors, onSelect }: MirrorListProps) { return ( -
+
{mirrors.map((mirror, index) => (
-
- +
+
-

{mirror.name}

-

{mirror.location}

+

{mirror.name}

+

{mirror.location}

-
-
- +
+
+ {formatSpeed(mirror.speed)}
@@ -45,4 +45,4 @@ export function MirrorList({ mirrors, onSelect }: MirrorListProps) { ))}
); -} \ No newline at end of file +}