Skip to content
Snippets Groups Projects
Select Git revision
  • 21fe97859835f6fb6df1b33ba41c546d2dacd091
  • master default
2 results

03_ko.html

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