mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-02 05:19:31 +00:00
21 lines
323 B
SCSS
21 lines
323 B
SCSS
.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;
|
|
cursor: pointer;
|
|
|
|
@include respond-to('large') {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|