Sebastian Kippe 2bdf08a523
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Add admin layout with admin navigation
And remove the hacky link list from the dashboard.
2020-12-28 09:32:04 +01:00

23 lines
363 B
SCSS

@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;
}
}
}
}
}
}