Sebastian Kippe 7e9af716ac
All checks were successful
continuous-integration/drone/push Build is passing
Make them colors pop
2021-02-03 13:37:44 +01:00

26 lines
459 B
SCSS

@import "variables";
body#admin-panel {
#wrapper {
> header {
background: $color-red-bright;
background: linear-gradient(35deg, rgba(255,0,255,0.2) 0, rgba(153,12,14,0.9) 100%),
url('/img/bg-1.jpg');
}
}
#main-nav {
ul {
grid-template-columns: repeat(4, 1fr);
li {
a {
&.active {
border-bottom: 2px solid $color-red-bright;
}
}
}
}
}
}