mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-23 18:36:16 +00:00
14 lines
261 B
TypeScript
14 lines
261 B
TypeScript
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
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;
|
||
|
|
`;
|