mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-28 07:36:13 +00:00
28 lines
468 B
TypeScript
28 lines
468 B
TypeScript
|
|
import { Card, Tooltip } from 'antd';
|
||
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
export const Container = styled(Card)`
|
||
|
|
&&& {
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ant-card-body {
|
||
|
|
padding: 0;
|
||
|
|
height: 55vh;
|
||
|
|
/* padding-bottom: 2rem; */
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const AlertIconContainer = styled(Tooltip)`
|
||
|
|
position: absolute;
|
||
|
|
top: 10px;
|
||
|
|
left: 10px;
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const NotFoundContainer = styled.div`
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
min-height: 55vh;
|
||
|
|
`;
|