raucao 4526c941b8
All checks were successful
continuous-integration/drone/push Build is passing
Merge pull request 'Add invitations page to admin panel' (#24) from feature/admin_invitations into master
Reviewed-on: #24
2021-02-01 22:53:31 +00:00

26 lines
460 B
SCSS

@import "variables";
body#admin-panel {
#wrapper {
> header {
background: $color-red-bright;
background: linear-gradient(35deg, rgba(137,85,160,0.8) 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;
}
}
}
}
}
}