mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-23 02:17:11 +00:00
12 lines
220 B
TypeScript
12 lines
220 B
TypeScript
|
|
import { Card } from 'antd';
|
||
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
export const CardStyled = styled(Card)`
|
||
|
|
position: relative;
|
||
|
|
margin: 0.5rem 0 3.1rem 0;
|
||
|
|
.ant-card-body {
|
||
|
|
height: 20vh;
|
||
|
|
min-height: 200px;
|
||
|
|
}
|
||
|
|
`;
|