Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
fix: alert info for dark mode (#9902)
Browse files Browse the repository at this point in the history
  • Loading branch information
vrushabhgawas14 committed Dec 30, 2023
1 parent f6905e5 commit 2e1ce65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Alert.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function Alert({ type, message }) {
case "info":
return (
<div
className={`alert-${type} mt-3 bg-blue-100 rounded-lg py-5 px-6 mb-3 text-base text-blue-700 inline-flex items-center w-full`}
className={`alert-${type} mt-3 dark:bg-blue-700 bg-blue-100 rounded-lg py-5 px-6 mb-3 text-base dark:text-blue-100 text-blue-700 inline-flex items-center w-full`}
role="alert"
>
<ExclamationCircleIcon className="h-5 w-5 mr-2" />
Expand Down

0 comments on commit 2e1ce65

Please sign in to comment.