feat: fix z-index

This commit is contained in:
Nevo David 2025-12-04 19:13:43 +07:00
parent 45294e07b5
commit 2b32d561e9
1 changed files with 2 additions and 2 deletions

View File

@ -208,7 +208,7 @@ export const WeekView = () => {
{localizedDays.map((day, index) => (
<div
key={day.name}
className="z-10 p-2 text-center bg-newTableHeader flex justify-center items-center flex-col h-[62px] rounded-[8px] sticky top-0"
className="p-2 text-center bg-newTableHeader flex justify-center items-center flex-col h-[62px] rounded-[8px] sticky top-0 z-[20]"
>
<div className="text-[14px] font-[500] text-newTableText">
{day.name}
@ -306,7 +306,7 @@ export const MonthView = () => {
{localizedDays.map((day) => (
<div
key={day}
className="z-10 p-2 bg-newTableHeader flex justify-center items-center flex-col h-[62px] rounded-[8px] sticky top-0"
className="z-[20] p-2 bg-newTableHeader flex justify-center items-center flex-col h-[62px] rounded-[8px] sticky top-0"
>
<div>{day}</div>
</div>