mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-20 19:31:09 +08: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;
|
|
`;
|