Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export default function CollapsibleDropPreview({
{children}
{hostWidth > 0 && (
<div
className="tw-pointer-events-none tw-fixed tw-left-[-100000px] tw-top-0 tw-opacity-0"
className="tw-pointer-events-none tw-absolute tw-left-[-100000px] tw-top-0 tw-opacity-0"
style={{ width: hostWidth }}
aria-hidden
inert
Expand All @@ -209,7 +209,7 @@ export default function CollapsibleDropPreview({
<div ref={hostRef} className="tw-relative tw-w-full tw-min-w-0">
{hostWidth > 0 && (
<div
className="tw-pointer-events-none tw-fixed tw-left-[-100000px] tw-top-0 tw-opacity-0"
className="tw-pointer-events-none tw-absolute tw-left-[-100000px] tw-top-0 tw-opacity-0"
style={{ width: hostWidth }}
aria-hidden
inert
Expand Down Expand Up @@ -248,7 +248,7 @@ export default function CollapsibleDropPreview({
<div ref={hostRef} className="tw-relative tw-w-full tw-min-w-0">
{hostWidth > 0 && hasMeasured && (
<div
className="tw-pointer-events-none tw-fixed tw-left-[-100000px] tw-top-0 tw-opacity-0"
className="tw-pointer-events-none tw-absolute tw-left-[-100000px] tw-top-0 tw-opacity-0"
style={{ width: hostWidth }}
aria-hidden
inert
Expand Down
2 changes: 1 addition & 1 deletion components/notifications/NotificationsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function NotificationsPage() {
}

return (
<div className="tw-h-full tw-bg-black tailwind-scope tw-relative">
<div className="tw-h-full tw-bg-black tailwind-scope tw-relative tw-overflow-hidden">
{isDropOpen &&
drop &&
(isApp ? (
Expand Down