mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-26 03:50:31 +00:00
22 lines
415 B
TypeScript
22 lines
415 B
TypeScript
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
export const GraphContainer = styled.div`
|
||
|
|
min-height: 70vh;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const NotFoundContainer = styled.div`
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
min-height: 55vh;
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const TimeContainer = styled.div`
|
||
|
|
display: flex;
|
||
|
|
justify-content: flex-end;
|
||
|
|
`;
|