mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
30 lines
470 B
TypeScript
30 lines
470 B
TypeScript
|
|
import { Select as SelectComponent } from 'antd';
|
||
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
export const Select = styled(SelectComponent)`
|
||
|
|
&&& {
|
||
|
|
min-width: 350px;
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const Container = styled.div`
|
||
|
|
&&& {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
margin-top: 1rem;
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const TableContainer = styled.div`
|
||
|
|
&&& {
|
||
|
|
margin-top: 2rem;
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const NoTableContainer = styled.div`
|
||
|
|
&&& {
|
||
|
|
margin-top: 2rem;
|
||
|
|
}
|
||
|
|
`;
|