1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-02 16:19:31 +00:00

Added adminHeader component

This commit is contained in:
2022-02-04 23:41:35 +00:00
parent 02c99d2c01
commit 3c18abfea8
3 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
.adminHeader {
display: flex;
justify-content: center;
align-items: center;
position: relative;
background-color: white;
z-index: 100;
.adminNav-toggle {
position: absolute;
left: 13%;
color: $primary-colour;
font-size: 1.3em;
@include respond-to('large') {
display: none;
}
}
}

View File

@@ -14,5 +14,6 @@
@import 'components/title';
@import 'components/mainPageHeader';
@import 'components/mainForm';
@import 'components/adminHeader';
@import 'pages/index';