Skip to content

Commit

Permalink
fix: header cell styles order
Browse files Browse the repository at this point in the history
  • Loading branch information
schummar committed Jan 8, 2024
1 parent 349c181 commit 81c91d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/columnHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,15 +198,15 @@ export function ColumnHeader() {
ref={ref}
className={cx(classes, columnClasses)}
css={[
defaultClasses.headerCell,
{
position: 'relative',
userSelect: 'none',
},
defaultClasses.headerCell,
styles,
columnStyles,
stickyHeader && defaultClasses.sticky,
stickyHeader instanceof Object && stickyHeader,
styles,
columnStyles,
]}
style={columnStyleOverride}
onPointerDown={enabled ? onPointerDown : undefined}
Expand Down

0 comments on commit 81c91d0

Please sign in to comment.