Add variables about sizes

This commit is contained in:
Thomas Dehaeze 2020-11-26 19:49:08 +01:00
parent 9b6d4b2b07
commit a67173756b
2 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,7 @@
// Large Screens
@media all and (min-width: $content-max-width+$toc-width) {
right: auto;
width: 1500px;
width: $content-max-width+$toc-width;
text-align: right;
}
}

View File

@ -0,0 +1,2 @@
$content-max-width: 1200px;
$toc-width: 300px;