Skip to content

Commit

Permalink
fix file upload error color
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsPi3141 committed Dec 28, 2024
1 parent c884e30 commit c3d7624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/fileupload.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function FileUpload({ onUpload }) {
{visible && (
<div
className={`relative p-2.5 rounded-[10px] w-[330px] h-[190px] pointer-events-none transition-colors duration-200 ${
error ? "bg-error upload-shake" : "bg-primary"
error ? "bg-critical upload-shake" : "bg-primary"
}`}
>
{/* Sparkle effects container */}
Expand Down

0 comments on commit c3d7624

Please sign in to comment.