Add admin layout with admin navigation
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

And remove the hacky link list from the dashboard.
This commit is contained in:
2020-12-28 09:32:04 +01:00
parent 9ddd36c414
commit 2bdf08a523
14 changed files with 114 additions and 13 deletions

View File

@@ -6,5 +6,8 @@ $text-color-discreet: #888;
$background-color-notice: #efffc4;
$background-color-alert: #fff4c2;
$color-blue: #0d4f99;
$color-purple: #8955a0;
$color-red-bright: #c00;
$color-red-dark: #990c0e;

View File

@@ -0,0 +1,22 @@
@import "variables";
body#admin-panel {
#wrapper {
> header {
background: $color-red-bright;
background: linear-gradient(35deg, $color-purple 0, $color-red-dark 100%);
}
}
#main-nav {
ul {
li {
a {
&.active {
border-bottom: 2px solid $color-red-bright;
}
}
}
}
}
}

View File

@@ -170,3 +170,7 @@ main {
}
}
}
.text-centered {
text-align: center;
}