Skip to content

Commit

Permalink
feat: update alert dialog designs (#3145)
Browse files Browse the repository at this point in the history
* feat: update alert dialog designs
  • Loading branch information
pavanjoshi914 authored May 14, 2024
1 parent 8435e0a commit 92bb90b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/components/Alert/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ export default function Alert({ type, children }: Props) {
return (
<div
className={classNames(
"rounded-md p-3",
"border rounded-md p-3",
type == "warn" &&
"text-orange-700 bg-orange-50 dark:text-orange-200 dark:bg-orange-900",
"text-orange-700 dark:text-orange-300 bg-orange-50 dark:bg-orange-900 border-orange-100 dark:border-orange-900",
type == "info" &&
"text-blue-700 bg-blue-50 dark:text-blue-300 dark:bg-blue-900"
"text-blue-700 dark:text-blue-300 bg-blue-50 dark:bg-blue-900 border-blue-100 dark:border-blue-900"
)}
>
{children}
Expand Down

0 comments on commit 92bb90b

Please sign in to comment.