Increase width of main content to better fill large screens sizes

This commit is contained in:
Michael Rose
2016-03-17 22:56:01 -04:00
parent 266f87d5ab
commit cf473ef12f
8 changed files with 45 additions and 33 deletions

View File

@ -12,10 +12,13 @@
@include breakpoint($large) {
position: absolute;
top: 0;
right: calc(50% - 512px + 1em); // 50% - 1/2 of wrapper's max-width + wrapper padding
right: calc(50% - (0.5 * #{$large}) + 1em); // 50% - 1/2 of wrapper's max-width + wrapper padding
width: $right-sidebar-width;
padding-left: 2em;
}
@include breakpoint($x-large) {
right: calc(50% - (0.5 * #{$x-large}) + 1em); // 50% - 1/2 of wrapper's max-width + wrapper padding
}
}
.toc__title {