Files
twenty_crm/front/src/modules/ui/input/text/components/TextInputDisplay.tsx
Charles Bochet ade5e52e55 Clean and re-organize post table refactoring (#1000)
* Clean and re-organize post table refactoring

* Fix tests
2023-07-30 18:26:32 -07:00

9 lines
171 B
TypeScript

import styled from '@emotion/styled';
export const TextInputDisplay = styled.div`
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 100%;
`;