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:
@ -4,13 +4,12 @@ import { autoUpdate, flip, offset, useFloating } from '@floating-ui/react';
|
|||||||
import { ReactElement } from 'react';
|
import { ReactElement } from 'react';
|
||||||
|
|
||||||
const StyledEditableCellEditModeContainer = styled.div<RecordTableCellEditModeProps>`
|
const StyledEditableCellEditModeContainer = styled.div<RecordTableCellEditModeProps>`
|
||||||
position: absolute;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
min-width: 200px;
|
height: 100%;
|
||||||
|
position: absolute;
|
||||||
width: calc(100% + 2px);
|
width: calc(100% + 2px);
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
height: 100%;
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export type RecordTableCellEditModeProps = {
|
export type RecordTableCellEditModeProps = {
|
||||||
|
|||||||
Reference in New Issue
Block a user