Update DownloadMuseHubButton.jsx

This commit is contained in:
Dilson's Pickles
2023-03-29 16:42:40 +01:00
parent 452af0bc1e
commit 810ae9cb6f

View File

@@ -11,10 +11,11 @@ function DownloadMuseHubButton(props) {
function renderButton(href) {
return (
<a
className="flex h-12 gap-3 px-4 items-center rounded justify-center whitespace-nowrap border border-blue-700 text-blue-700 hover:bg-blue-700 hover:text-white"
className="flex flex-col gap-1 py-2 px-4 items-center rounded justify-center border border-gray-200 text-blue-700 hover:bg-gray-100 hover:border-gray-300"
href={href}
>
Download with free VST effects
Audacity + free effects & samples
<p class="text-xs text-gray-700">Requires the MuseHub installer</p>
</a>
);
}