mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-01 13:51:58 +08:00
29 lines
591 B
TypeScript
29 lines
591 B
TypeScript
import { grey } from '@ant-design/colors';
|
|
import styled from 'styled-components';
|
|
|
|
export const DashedContainer = styled.div`
|
|
border: ${`1px dashed ${grey[0]}`};
|
|
box-sizing: border-box;
|
|
border-radius: 0.25rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 1rem;
|
|
margin-top: 1.875rem;
|
|
margin-bottom: 1.625rem;
|
|
align-items: center;
|
|
`;
|
|
|
|
export const ButtonContainer = styled.div`
|
|
display: flex;
|
|
gap: 1rem;
|
|
`;
|
|
|
|
export const EventContainer = styled.div`
|
|
display: flex;
|
|
justify-content: space-between;
|
|
`;
|
|
|
|
export const EditorContainer = styled.div`
|
|
margin-top: 1.5rem;
|
|
`;
|