fix: last field overflow (#8510)

Fixes: #7216 

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

Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
This commit is contained in:
Harsh Singh
2024-12-27 18:00:35 +05:30
committed by GitHub
parent e1f8ac4a4c
commit 546a793aed

View File

@ -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 = {