pal-sig c79223742f
fix(UI): graph legends is fixed (#461)
* 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
2021-12-10 14:28:31 +05:30

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;
}
`;