Skip to content

Commit 753095d

Browse files
1 parent 2cd624a commit 753095d

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

packages/twenty-front/src/modules/object-record/record-table/record-table-body/components/RecordTableBodyDroppable.tsx

+10
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,16 @@ const StyledTbody = styled.tbody<{
2525
position: sticky;
2626
left: 39px;
2727
z-index: 5;
28+
&::after {
29+
content: '';
30+
position: absolute;
31+
top: -1px;
32+
height: calc(100% + 2px);
33+
width: 4px;
34+
right: 0px;
35+
box-shadow: ${({ theme }) => theme.boxShadow.light};
36+
clip-path: inset(0px -4px 0px 0px);
37+
}
2838
}
2939
}
3040
`;

packages/twenty-front/src/modules/object-record/record-table/record-table-header/components/RecordTableHeader.tsx

+10
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,16 @@ const StyledTableHead = styled.thead<{
3939
position: sticky;
4040
left: 39px;
4141
z-index: 5;
42+
&::after {
43+
content: '';
44+
position: absolute;
45+
top: -1px;
46+
height: calc(100% + 2px);
47+
width: 4px;
48+
right: 0px;
49+
box-shadow: ${({ theme }) => theme.boxShadow.light};
50+
clip-path: inset(0px -4px 0px 0px);
51+
}
4252
@media (max-width: ${MOBILE_VIEWPORT}px) {
4353
width: 35px;
4454
max-width: 35px;

0 commit comments

Comments
 (0)