23 lines
363 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|