Skip to content

Commit 5213e13

Browse files
committed
fix: removed sticky from first column header cell and data cell
1 parent b65b1b4 commit 5213e13

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/web/core/components/issues/issue-layouts/spreadsheet/issue-row.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ const IssueRowDetails = observer((props: IssueRowDetailsProps) => {
260260
id={`issue-${issueId}`}
261261
ref={cellRef}
262262
tabIndex={0}
263-
className="relative md:sticky left-0 z-10 group/list-block bg-custom-background-100 min-w-60 max-w-[30vw]"
263+
className="relative group/list-block bg-custom-background-100 min-w-60 max-w-[30vw]"
264264
>
265265
<ControlLink
266266
href={workItemLink}

apps/web/core/components/issues/issue-layouts/spreadsheet/spreadsheet-header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export const SpreadsheetHeader = observer((props: Props) => {
4545
<thead className="sticky top-0 left-0 z-[12] border-b-[0.5px] border-custom-border-100">
4646
<tr>
4747
<th
48-
className="group/list-header sticky min-w-60 left-0 z-[15] h-11 flex items-center gap-1 bg-custom-background-90 text-sm font-medium before:absolute before:h-full before:right-0 before:border-custom-border-100"
48+
className="group/list-header min-w-60 h-11 flex items-center gap-1 bg-custom-background-90 text-sm font-medium before:absolute before:h-full before:right-0 before:border-custom-border-100"
4949
tabIndex={-1}
5050
>
5151
<Row>

0 commit comments

Comments
 (0)