mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-21 17:36:37 +00:00
16 lines
285 B
TypeScript
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;
|
|
}
|
|
`;
|