sbt-idp/cope2n-fe/src/components/editable-cell/index.tsx

12 lines
247 B
TypeScript
Raw Normal View History

2023-11-30 11:19:06 +00:00
import { Typography } from 'antd';
import styled from 'styled-components';
export const EditableCell = styled(Typography.Text)`
margin-top: 0 !important;
margin-bottom: 0 !important;
& > .ant-typography-copy {
margin-left: 8px;
}
`;