We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d4057b commit 9f2a5aeCopy full SHA for 9f2a5ae
assets/sass/layout.scss
@@ -27,13 +27,17 @@ body {
27
}
28
29
aside {
30
- float: left;
31
width: 218px;
32
margin-bottom: 35px;
+ position: sticky;
33
+ top: 0;
34
+ max-height: 100vh;
35
+ overflow-y: auto;
36
+ /* align with the top of the content */
37
+ padding-top: 46px;
38
39
40
#content {
- float: right;
41
width: 702px;
42
43
@@ -437,6 +441,10 @@ table.benchmarks {
437
441
438
442
439
443
444
+#content-wrapper {
445
+ display: flex;
446
+}
447
+
440
448
// Breakpoint ----------------
449
@media (max-width: $default) {
450
.responsive-table { overflow-x: auto; }
0 commit comments