🐛 Calendar indicator over header bar fix (#1401)

This commit is contained in:
Tagaishi
2023-09-17 16:17:28 +02:00
committed by GitHub
parent a3f364e67d
commit 4a30e327a3

View File

@@ -131,7 +131,7 @@ const DayIndicator = ({ size, offset, color, medias, children, position }: DayIn
if (medias.length === 0) return children;
return (
<Indicator size={size} withBorder offset={offset} color={color} position={position}>
<Indicator size={size} withBorder offset={offset} color={color} position={position} zIndex={0}>
{children}
</Indicator>
);