13 lines
294 B
TypeScript
13 lines
294 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
export const CellNormalModeContainer = styled.div`
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
|
|
padding-left: ${(props) => props.theme.spacing(2)};
|
|
padding-right: ${(props) => props.theme.spacing(2)};
|
|
`;
|