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

Co-authored-by: Nazarenko19 <danil.nazarenko2000@gmail.com> Co-authored-by: Palash Gupta <palashgdev@gmail.com>
20 lines
401 B
TypeScript
20 lines
401 B
TypeScript
import { Card, Space, Typography } from 'antd';
|
|
import styled from 'styled-components';
|
|
|
|
export const OptionsContainer = styled(Card)`
|
|
.ant-card-body {
|
|
display: flex;
|
|
padding: 0.25rem 0.938rem;
|
|
cursor: pointer;
|
|
}
|
|
`;
|
|
|
|
export const OptionsContentWrapper = styled(Space)`
|
|
min-width: 11rem;
|
|
padding: 0.25rem 0.5rem;
|
|
`;
|
|
|
|
export const FieldTitle = styled(Typography.Text)`
|
|
font-size: 0.75rem;
|
|
`;
|