mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-02 07:39:28 +00:00
54 lines
726 B
SCSS
54 lines
726 B
SCSS
.adminNav {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100vw;
|
|
height: 82vh;
|
|
background-color: $primary-colour;
|
|
padding: 3rem 0;
|
|
padding-top: 5rem;
|
|
|
|
display: none;
|
|
|
|
a {
|
|
color: white;
|
|
}
|
|
|
|
&__profile {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
img {
|
|
border-radius: 100%;
|
|
}
|
|
|
|
.details {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
color: white;
|
|
}
|
|
|
|
.logout {
|
|
align-self: flex-end;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
&__items {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
|
|
@include respond-to('large') {
|
|
display: flex;
|
|
width: 20vw;
|
|
height: 87vh;
|
|
}
|
|
}
|