/ frontend / src / components / views / header / Header.module.scss
Header.module.scss
 1  @import "../../../resources/styles/vars.scss";
 2  
 3  .header {
 4    width: 100%;
 5    padding-right: $padding;
 6    padding-left: $padding;
 7    background-color: $color-background-900;
 8    box-shadow: 0 2px 16px 8px rgba(0, 0, 0, 0.3);
 9  
10    display: flex;
11    flex-direction: row;
12    align-items: center;
13    justify-content: space-between;
14  }