feat: fix z-index
This commit is contained in:
parent
45294e07b5
commit
2b32d561e9
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue