martmull
2025-03-13 16:50:35 +01:00
committed by GitHub
parent 4f0fd0c9f3
commit b1322beac3
6 changed files with 12 additions and 8 deletions

View File

@ -83,7 +83,7 @@ const StyledClickableZone = styled.div`
justify-content: flex-end;
`;
const MotionIconChevronDown = motion(IconChevronDown);
const MotionIconChevronDown = motion.create(IconChevronDown);
type RecordDetailRelationRecordsListItemProps = {
isExpanded: boolean;

View File

@ -28,7 +28,7 @@ const StyledTable = styled.table`
table-layout: fixed;
width: 100%;
.footer-sticky tr:nth-last-child(2) td {
.footer-sticky tr:nth-last-of-type(2) td {
border-bottom-color: ${({ theme }) => theme.background.transparent};
}
`;

View File

@ -15,7 +15,7 @@ type RecordTableDraggableTrProps = {
children: ReactNode;
};
const StyledAbsoluteInViewContainer = styled.div`
const StyledAbsoluteInViewContainer = styled.td`
position: absolute;
top: 0;
left: 0;