Skip to content

Commit

Permalink
fixes toast opacity
Browse files Browse the repository at this point in the history
  • Loading branch information
mishushakov committed Dec 9, 2024
1 parent cb88326 commit 6755fbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/components/ui/toast.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const toastVariants = cva(
{
variants: {
variant: {
default: 'bg-orange-500/50 border border-white/20 text-foreground',
default: 'bg-orange-500 border border-white/20 text-foreground',
destructive:
'destructive group border-destructive bg-destructive text-destructive-foreground',
},
Expand All @@ -43,7 +43,7 @@ const toastVariants = cva(
const Toast = React.forwardRef<
React.ElementRef<typeof ToastPrimitives.Root>,
React.ComponentPropsWithoutRef<typeof ToastPrimitives.Root> &
VariantProps<typeof toastVariants>
VariantProps<typeof toastVariants>
>(({ className, variant, ...props }, ref) => {
return (
<ToastPrimitives.Root
Expand Down

0 comments on commit 6755fbf

Please sign in to comment.