Skip to content

Instantly share code, notes, and snippets.

@leochiu-a
Created September 1, 2021 12:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leochiu-a/62d2e9dce4d1a8b09905f35ca8bf4a8a to your computer and use it in GitHub Desktop.
Save leochiu-a/62d2e9dce4d1a8b09905f35ca8bf4a8a to your computer and use it in GitHub Desktop.
import styled from "styled-components";
export const AuthSection = styled.section`
padding: 24px;
gap: 16px;
border-radius: 10px;
background: #fff;
box-shadow: 4px 4px 12px 1px rgb(0 0 0 / 20%);
min-height: 240px;
margin: 24px auto;
width: 600px;
`;
export const Login = styled.h1`
text-align: center;
color: #333;
`;
export const ControlItem = styled.div`
margin-bottom: 8px;
display: flex;
flex-direction: column;
justify-content: center;
`;
export const ControlLable = styled.label`
color: #333;
font-weight: bold;
margin-bottom: 8px;
`;
export const ControlInput = styled.input`
border-radius: 4px;
padding: 4px;
`;
export const SubmitButtonWrapper = styled.div`
margin-top: 24px;
display: flex;
flex-direction: column;
align-items: center;
`;
export const SubmitButton = styled.button`
cursor: pointer;
font: inherit;
color: #333;
border-radius: 4px;
padding: 8px 40px;
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment