Skip to content
Snippets Groups Projects
Select Git revision
  • 0322cd7392073460947f5899b58fc81a0735bb83
  • main default protected
  • history
3 results

Header.module.css

Blame
  • Forked from ajou-pay / client-user
    Source project has a limited visibility.
    Header.module.css 537 B
    .container {
        height: var(--header-height);
        width: 100%;
        padding: 15px;
    
        font-weight: bold;
        font-size: var(--fs-5);
    
        border-bottom: 1px solid var(--gray-1);
        background-color: white;
    
        position: fixed;
        top: 0;
    }
    
    .home {
        height: 100%;
    
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .cart {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }