Bob AI: change button color to green

This commit is contained in:
2026-02-05 12:01:10 +02:00
parent 9a38d2b701
commit ab7fb7e80f

View File

@@ -111,12 +111,12 @@ const ContactSplitForm = ({
const getButtonConfigProps = () => { const getButtonConfigProps = () => {
if (theme.defaultButtonVariant === "hover-bubble") { if (theme.defaultButtonVariant === "hover-bubble") {
return { bgClassName: "w-full" }; return { bgClassName: "w-full bg-green-500" };
} }
if (theme.defaultButtonVariant === "icon-arrow") { if (theme.defaultButtonVariant === "icon-arrow") {
return { className: "justify-between" }; return { className: "justify-between" };
} }
return {}; return { bgClassName: "bg-green-500" };
}; };
const formContent = ( const formContent = (