vinyl-component-blocks
Version:
Modular, Reusable, and Styled UI Component Library. Stop repeating work, install, call, use, modify.
16 lines (13 loc) • 328 B
text/typescript
import styled from "styled-components";
export const ButtonWrapper = styled.div`
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 40px;
`;
export const StyledForm = styled.form`
padding: 40px 25px;
width: 450px;
border: 1px solid #333333;
border-radius: 0.4em;
`;