mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
17 lines
320 B
TypeScript
17 lines
320 B
TypeScript
import { Card } from 'antd';
|
|
import styled from 'styled-components';
|
|
|
|
export const FormWrapper = styled(Card)`
|
|
display: flex;
|
|
justify-content: center;
|
|
max-width: 432px;
|
|
flex: 1;
|
|
`;
|
|
|
|
export const ButtonContainer = styled.div`
|
|
margin-top: 1.8125rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
`;
|