Pranshu Chittora f48a884f90
fix: eslint and tsc fixes for logs (#1527)
* fix: eslint and tsc fixes for logs

* chore: remove package-lock file
2022-08-19 17:16:04 +05:30

16 lines
285 B
TypeScript

import { Card, Col } from 'antd';
import styled from 'styled-components';
export const Container = styled(Col)`
overflow-x: hidden;
width: 100%;
margin-bottom: 1rem;
`;
export const Heading = styled(Card)`
margin-bottom: 0.1rem;
.ant-card-body {
padding: 0.3rem 0.5rem;
}
`;