9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
export const InplaceInputTextDisplayMode = styled.div`
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
`;
|