mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-20 05:11:09 +08:00

* fix(UI): graph legends is fixed * chore(UI): some changes regarding the color of the chart is updated * full view css is fixed * usage explorer graph is fixed * default query is removed * fix: scroll is removed
41 lines
575 B
TypeScript
41 lines
575 B
TypeScript
import {
|
|
Card as CardComponent,
|
|
Col as ColComponent,
|
|
Row as RowComponent,
|
|
Typography,
|
|
} from 'antd';
|
|
import styled from 'styled-components';
|
|
|
|
export const Card = styled(CardComponent)`
|
|
&&& {
|
|
padding: 10px;
|
|
}
|
|
|
|
.ant-card-body {
|
|
padding: 0;
|
|
min-height: 40vh;
|
|
}
|
|
`;
|
|
|
|
export const Row = styled(RowComponent)`
|
|
&&& {
|
|
padding: 1rem;
|
|
}
|
|
`;
|
|
|
|
export const Col = styled(ColComponent)`
|
|
display &&& {
|
|
position: relative;
|
|
}
|
|
`;
|
|
|
|
export const GraphContainer = styled.div`
|
|
height: 40vh;
|
|
`;
|
|
|
|
export const GraphTitle = styled(Typography)`
|
|
&&& {
|
|
text-align: center;
|
|
}
|
|
`;
|