All checks were successful
continuous-integration/drone/push Build is passing
26 lines
459 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|