2021-12-23 14:51:34 -03:00
|
|
|
import styled from 'styled-components'
|
|
|
|
|
|
|
|
|
|
export const Wrapper = styled.form`
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
`
|
|
|
|
|
|
|
|
|
|
export const InputsGroup = styled.div`
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
width: 100%;
|
|
|
|
|
`
|