Skip to content
Snippets Groups Projects
Select Git revision
  • 1a4e2d776d5c1a9fc2197dbd08cbfcffa16527ca
  • main default protected
2 results

user.js

Blame
  • 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;
    }