Skip to content

Commit 3bfe32a

Browse files
authored
fix: download button text color is blending into the background (#883)
1 parent e0066c1 commit 3bfe32a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/containers/DownloadApp/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,14 +110,14 @@ export default function DownloadApp() {
110110
<a
111111
key={i}
112112
href={system.href}
113-
className={`inline-flex m-2 px-4 py-2 rounded-lg text-lg font-semibold cursor-pointer justify-center items-center space-x-2 border border-gray-400 dark:border-gray-700 text-black dark:text-white bg-neutral-50 min-w-[150px] dark:bg-[#18181B], ${
113+
className={`inline-flex m-2 px-4 py-2 rounded-lg text-lg font-semibold cursor-pointer justify-center items-center space-x-2 border border-gray-400 dark:border-gray-700 text-black dark:text-black bg-neutral-50 min-w-[150px] dark:bg-[#18181B], ${
114114
system.comingSoon && "pointer-events-none "
115115
}`}
116116
>
117117
<system.logo />
118118
<span>{system.name}</span>
119119
{system.comingSoon && (
120-
<span className="bg-gray-300 dark:bg-gray-700 py-0.5 px-2 inline-block ml-2 rounded-md text-sm mt-1">
120+
<span className="bg-gray-300 py-0.5 px-2 inline-block ml-2 rounded-md text-sm mt-1">
121121
Coming Soon
122122
</span>
123123
)}

0 commit comments

Comments
 (0)