1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28@use '../../css/queries.scss' as *; .footer { padding: calc(var(--base) * 4) 0; z-index: var(--header-z-index); background-color: var(--color-base-1000); color: var(--color-base-0); } .wrap { display: flex; justify-content: space-between; } .nav { display: flex; align-items: center; > * { text-decoration: none; margin-left: var(--base); } @include mid-break { display: none; } }