fix: border issue for time slots (#10577)
Co-authored-by: Raghul D <v-raghuld@microsoft.com>pull/10672/head^2
parent
9c45da565e
commit
7603ea6184
|
@ -107,7 +107,7 @@ function Cell({ isDisabled, topOffsetMinutes, timeSlot }: CellProps) {
|
||||||
{!isDisabled && hoverEventDuration !== 0 && (
|
{!isDisabled && hoverEventDuration !== 0 && (
|
||||||
<div
|
<div
|
||||||
className={classNames(
|
className={classNames(
|
||||||
"opacity-4 bg-brand-default hover:bg-brand-default text-brand dark:border-emphasis absolute hidden rounded-[4px] border-[1px] border-gray-900 px-[6px] py-1 text-xs font-semibold leading-5 group-hover:flex group-hover:cursor-pointer",
|
"opacity-4 bg-brand-default hover:bg-brand-default text-brand dark:border-emphasis absolute hidden rounded-[4px] p-[6px] text-xs font-semibold leading-5 group-hover:flex group-hover:cursor-pointer",
|
||||||
hoverEventDuration && hoverEventDuration > 15 && "items-start pt-3",
|
hoverEventDuration && hoverEventDuration > 15 && "items-start pt-3",
|
||||||
hoverEventDuration && hoverEventDuration < 15 && "items-center"
|
hoverEventDuration && hoverEventDuration < 15 && "items-center"
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Reference in New Issue