.adminNav { display: none; box-sizing: border-box; flex-direction: column; justify-content: space-between; align-items: center; position: fixed; top: 0; width: 100vw; height: 100vh; background-color: $primary-colour; padding: 6rem 0 3rem 0; z-index: 50; &__profile { display: flex; flex-direction: column; padding-bottom: 4rem; img { border-radius: 100%; } .details { display: flex; align-items: center; gap: 1rem; color: white; } .logout { color: white; align-self: flex-end; text-decoration: underline; i { text-decoration: none; margin-right: 5px; } } @include respond-to('large') { padding-bottom: 0; } } &__items { display: flex; align-items: center; flex-direction: column; width: 100%; } @include respond-to('large') { display: flex; width: 20vw; } }