Select Git revision
LoginPage.module.css
Forked from
ajou-pay / client-user
Source project has a limited visibility.
-
Minseo Lee authoredMinseo Lee authored
LoginPage.module.css 736 B
.container {
width: 100vw;
max-width: 768px;
height: 100vh;
margin-top: calc(-1*var(--header-height));
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 8px;
}
.container input {
border: 1px solid var(--gray-1);
width: 80%;
height: 36px;
padding: 4px;
padding-left: 8px;
}
.btn-area {
width: 100%;
display: flex;
justify-content: center;
gap: 16px;
}
.btn-area button {
width: calc(40% - 8px);
height: 36px;
border-radius: 8px;
}
.signup-btn {
border: 1px solid var(--gray-1);
background-color: white;
}
.login-btn {
border: none;
background-color: var(--brand-color);
color: white;
}