Skip to content

Commit

Permalink
Fix a few styles (adazzle#3010)
Browse files Browse the repository at this point in the history
* Fix zIndex

* Fix cursor
  • Loading branch information
amanmahajan7 authored Sep 1, 2022
1 parent 92cf647 commit f95c7e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/style/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const root = css`
export const rootClassname = `rdg ${root}`;

const viewportDragging = css`
&.${row} {
& .${row} {
cursor: move;
}
`;
Expand All @@ -104,6 +104,6 @@ export const viewportDraggingClassname = `rdg-viewport-dragging ${viewportDraggi
export const focusSinkClassname = css`
grid-column: 1/-1;
pointer-events: none;
/* Should have a higher value than 3 to show up above header row */
z-index: 4;
/* Should have a higher value than 2 to show up above header row */
z-index: 3;
`;

0 comments on commit f95c7e2

Please sign in to comment.