ds-site/Resources/Private/Sass/layout/_content.scss

37 lines
542 B
SCSS
Raw Normal View History

2019-11-15 00:27:23 +01:00
body > main {
@extend .row;
& > section {
2019-12-13 16:29:34 +01:00
@extend .col-xl-8;
@extend .col-12;
2019-11-15 00:27:23 +01:00
}
& > aside {
2019-12-13 16:29:34 +01:00
@extend .col-xl-4;
@extend .col-12;
@extend .order-xl-2;
2019-11-15 00:27:23 +01:00
}
}
aside nav {
ul {
list-style: none;
padding-left: 0;
}
}
2019-12-13 16:40:43 +01:00
@media (max-width: 1439px) {
aside nav:nth-of-type(2) li {
display: inline;
margin-right: $spacer;
line-height: $spacer * 4;
}
}
2019-11-15 00:27:23 +01:00
li {
padding: {
bottom: $spacer / 2;
top: $spacer / 2;
}
}