Skip to content

Commit

Permalink
fix(minicart): remove right positioning
Browse files Browse the repository at this point in the history
  • Loading branch information
micael-diniz committed Dec 21, 2023
1 parent df1bcdf commit 321e378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Minicart/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function Minicart() {
return totalQuantity > 0 ? (
<Badge
content={totalQuantity}
className="right-[1.6rem] h-[2.4rem] w-[2.4rem] border-none bg-yellow-700 text-[1.2rem] font-bold text-white"
className="h-[2.4rem] w-[2.4rem] border-none bg-yellow-700 text-[1.2rem] font-bold text-white"
>
<button
onClick={() => navigate('/checkout')}
Expand Down

0 comments on commit 321e378

Please sign in to comment.