mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-18 13:01:30 +08:00
18 lines
334 B
TypeScript
18 lines
334 B
TypeScript
import { Typography } from 'antd';
|
|
import Card from 'antd/es/card/Card';
|
|
import styled from 'styled-components';
|
|
|
|
export const Container = styled(Card)`
|
|
position: relative;
|
|
margin: 0.5rem 0 3.1rem 0;
|
|
|
|
.ant-card-body {
|
|
height: 50vh;
|
|
min-height: 350px;
|
|
}
|
|
`;
|
|
|
|
export const ErrorText = styled(Typography)`
|
|
text-align: center;
|
|
`;
|