mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
* tooltip is added * fix: tooltip component is updated * Tooltip component is updated * settings tooltip is updated * tooltip size is updated
26 lines
403 B
TypeScript
26 lines
403 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;
|
|
|
|
margin-left: 1rem;
|
|
}
|
|
`;
|
|
|
|
export const TableContainer = styled(Row)`
|
|
&&& {
|
|
margin-top: 1rem;
|
|
}
|
|
`;
|
|
|
|
export const ButtonContainer = styled.div`
|
|
&&& {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
`;
|