update config
All checks were successful
Publish Docker Image / docker (push) Successful in 1m44s

This commit is contained in:
Lee
2023-07-12 11:11:08 +01:00
parent 5c0837f9e6
commit aa466b3277
3 changed files with 10 additions and 20 deletions

View File

@ -96,6 +96,8 @@ export default function Home() {
{links &&
links.map((link, index) => {
const icons: any = link.icon?.split(" ") ?? [];
const legacyColor: any = link.color; // Here so old configs don't break
const color = link.color || legacyColor.normal;
return (
<a
@ -104,7 +106,7 @@ export default function Home() {
target="_blank"
rel="noopener noreferrer"
className={`flex flex-row items-center justify-center mt-4 px-4 w-60 py-2 rounded
${selectedTheme.buttonTextColor} ${link.color.normal} hover:brightness-75 transition gap-2`}
${selectedTheme.buttonTextColor} ${color} hover:brightness-75 transition gap-2`}
>
{link.icon && <FontAwesomeIcon icon={icons} />}
<p>{link.title}</p>