import styled from "styled-components";
import { Breakpoint } from "@arcteryx/components-typography";

export const AddressForm = styled.form`
  width: 100%;
  max-width: 500px;
  height: 100%;
  padding: 10px;
  ${Breakpoint("sm")`
    width: 90%;
  `}
`;
