fix: remove overflow property

This commit is contained in:
Felix Zett 2025-09-20 20:32:55 +02:00
parent 19099526e1
commit 00d4a9b7e8

View file

@ -250,7 +250,6 @@ export default function TripChecklist({ trips }: { trips: any[] }) {
style={{
background: progressGradient,
transition: "background 0.3s",
overflow: "hidden",
}}
>
{/* Overlay: shrinking box from the right */}
@ -347,7 +346,6 @@ export default function TripChecklist({ trips }: { trips: any[] }) {
</div>
{/* Fortschritt kompakt rechts */}
<div className="flex flex-col items-end min-w-[120px]" style={{ position: "relative", zIndex: 2 }}>
<span className="font-semibold text-gray-700 text-sm">Fortschritt</span>
<span className="text-xs text-gray-500">{checkedItems} / {totalItems}</span>
<span className="text-xs text-gray-500">{progress}%</span>
</div>