mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-02 09:30:40 +08:00

Co-authored-by: gitstart <gitstart@users.noreply.github.com> Co-authored-by: palashgdev <palashgdev@gmail.com> Co-authored-by: Vishal Sharma <makeavish786@gmail.com>
23 lines
418 B
TypeScript
23 lines
418 B
TypeScript
import { Card, Form } 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;
|
|
`;
|
|
|
|
export const FormContainer = styled(Form)`
|
|
& .ant-form-item {
|
|
margin-bottom: 0px;
|
|
}
|
|
`;
|