@import "variables"; .header { @media print { display: none; } display: flex; flex-direction: column; position: relative; &__inner { display: flex; align-items: center; justify-content: space-between; } &__logo { display: flex; flex: 1; &:after { content: ''; background: repeating-linear-gradient(90deg, var(--accent), var(--accent) 2px, transparent 0, transparent 10px); display: block; width: 100%; right: 10px; } a { flex: 0 0 auto; max-width: 100%; text-decoration: none; } } .menu { margin: 20px 0; --shadow-color: var(--accent-alpha-70); --shadow: 0 10px var(--shadow-color), -10px 10px var(--shadow-color), 10px 10px var(--shadow-color); @media (max-width: $tablet-max-width) { margin-bottom: 0; } &__inner { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; li:not(:last-of-type) { margin-right: 20px; margin-bottom: 10px; flex: 0 0 auto; } @media (max-width: $phone-max-width) { align-items: flex-start; padding: 0; li { margin: 0; padding: 5px; } } } } }