chore: Update save button styling in EditMessageForm

This commit is contained in:
n4ze3m 2024-05-29 00:21:56 +05:30
parent 387c158478
commit f5b0cc24ac

View File

@ -49,7 +49,7 @@ export const EditMessageForm = (props: Props) => {
<div className="flex justify-center space-x-2 mt-2">
<button
aria-label={t("save")}
className="bg-white dark:bg-black px-2.5 py-2 rounded-md text-gray-700 dark:text-gray-300 focus:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:ring-gray-500 hover:bg-gray-100 dark:hover:bg-gray-900">
className="bg-black px-2.5 py-2 rounded-md text-white focus:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:ring-gray-500 hover:bg-gray-900">
{props.isBot ? t("save") : t("saveAndSubmit")}
</button>
<button