1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-03 01:18:17 +00:00

Fixed arbitrary heights using box-sizing, clean up more loose styling

This commit is contained in:
2022-02-08 20:28:51 +00:00
parent ec6437e2bc
commit 4af91051a0
3 changed files with 13 additions and 6 deletions

View File

@@ -1,15 +1,15 @@
.adminNav {
display: none;
box-sizing: border-box;
flex-direction: column;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
width: 100vw;
height: 82vh;
height: 100vh;
background-color: $primary-colour;
padding: 3rem 0;
padding-top: 5rem;
padding: 6rem 0 3rem 0;
z-index: 50;
&__profile {
@@ -29,8 +29,14 @@
}
.logout {
color: white;
align-self: flex-end;
text-decoration: underline;
i {
text-decoration: none;
margin-right: 5px;
}
}
@include respond-to('large') {
@@ -48,6 +54,5 @@
@include respond-to('large') {
display: flex;
width: 20vw;
height: 87vh;
}
}