Skip to content

Commit

Permalink
fix: last field overflow (#8510)
Browse files Browse the repository at this point in the history
Fixes: #7216 

The issue was caused by the ```min-width``` property of
```StyledEditableCellEditModeContainer```. So, I removed it.

Co-authored-by: Lucas Bordeau <[email protected]>
  • Loading branch information
harshrajeevsingh and lucasbordeau authored Dec 27, 2024
1 parent e1f8ac4 commit 546a793
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ import { autoUpdate, flip, offset, useFloating } from '@floating-ui/react';
import { ReactElement } from 'react';

const StyledEditableCellEditModeContainer = styled.div<RecordTableCellEditModeProps>`
position: absolute;
align-items: center;
display: flex;
min-width: 200px;
height: 100%;
position: absolute;
width: calc(100% + 2px);
z-index: 1;
height: 100%;
`;

export type RecordTableCellEditModeProps = {
Expand Down

0 comments on commit 546a793

Please sign in to comment.