25 lines
409 B
SCSS
25 lines
409 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 {
|
|
grid-template-columns: repeat(4, 1fr);
|
|
|
|
li {
|
|
a {
|
|
&.active {
|
|
border-bottom: 2px solid $color-red-bright;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|