mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
16 lines
253 B
TypeScript
16 lines
253 B
TypeScript
|
|
import { Select } from 'antd';
|
||
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
export const SelectDrawer = styled(Select)`
|
||
|
|
width: 120px;
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const TitleWrapper = styled.div`
|
||
|
|
display: flex;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
|
||
|
|
> article {
|
||
|
|
min-width: 11rem;
|
||
|
|
}
|
||
|
|
`;
|