mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
17 lines
284 B
TypeScript
17 lines
284 B
TypeScript
|
|
import { Button, Row } from 'antd';
|
||
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
export const NewDashboardButton = styled(Button)`
|
||
|
|
&&& {
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const TableContainer = styled(Row)`
|
||
|
|
&&& {
|
||
|
|
margin-top: 1rem;
|
||
|
|
}
|
||
|
|
`;
|