Skip to content

Commit

Permalink
remove debugging background color
Browse files Browse the repository at this point in the history
  • Loading branch information
nemanjam committed Jul 16, 2024
1 parent 5b79465 commit 7a7899d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/react/ScrollToTop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ const ScrollToTop: React.FC<Props> = ({ children }) => {
<>
<div
ref={topRef}
className="pointer-events-none absolute top-0 w-10 bg-red-500"
className="pointer-events-none absolute top-0 w-0"
style={{ height: `${height}px` }}
/>
{/* mounted in <body /> in Base layout */}
<div
ref={bottomRef}
className="pointer-events-none absolute bottom-0 w-10 bg-blue-500"
className="pointer-events-none absolute bottom-0 w-0"
style={{ height: `${height}px` }}
/>
<a
Expand Down

0 comments on commit 7a7899d

Please sign in to comment.