36 lines
542 B
SCSS
36 lines
542 B
SCSS
body > main {
|
|
@extend .row;
|
|
|
|
& > section {
|
|
@extend .col-xl-8;
|
|
@extend .col-12;
|
|
}
|
|
|
|
& > aside {
|
|
@extend .col-xl-4;
|
|
@extend .col-12;
|
|
@extend .order-xl-2;
|
|
}
|
|
}
|
|
|
|
aside nav {
|
|
ul {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1439px) {
|
|
aside nav:nth-of-type(2) li {
|
|
display: inline;
|
|
margin-right: $spacer;
|
|
line-height: $spacer * 4;
|
|
}
|
|
}
|
|
|
|
li {
|
|
padding: {
|
|
bottom: $spacer / 2;
|
|
top: $spacer / 2;
|
|
}
|
|
}
|