issue #60
All checks were successful
Test CI / build (push) Successful in 17s

- z-index 이슈 해결
This commit is contained in:
2025-12-14 02:56:24 +09:00
parent 8015eb45db
commit fdbfd80462

View File

@@ -397,7 +397,6 @@ export const CustomCalendar = ({ data }: CustomCalendarProps) => {
{
barPositions.map(pos => (
<PopoverTrigger
className="z-100"
onClick={(e) => {
e.stopPropagation();
@@ -407,7 +406,7 @@ export const CustomCalendar = ({ data }: CustomCalendarProps) => {
<div
key={pos.segmentId}
className={cn(
`flex flex-row justify-start items-center absolute z-100`,
`flex flex-row justify-start items-center absolute`,
"py-0.5 px-2 rounded-sm text-xs text-white overflow-hidden"
)}
style={{...pos.positionStyle, backgroundColor: pos.style}}