Skip to content

Commit ce914ba

Browse files
committed
fix: Fix medium width layout
- col-md-3 - col-md-2 - col-md-7 The sum should be 12 (3+2+7).
1 parent 42b12a6 commit ce914ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/_layouts/default.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@
5555
</div>
5656
</nav>
5757

58-
<div class="col-12 col-md-3 col-xl-2 toc-content-sticky">
58+
<div class="col-12 col-md-2 col-xl-2 toc-content-sticky">
5959
<div class="toc-content">{% toc %}</div>
6060
</div>
6161

62-
<main role="main" class="col-12 col-md-9 col-xl-8 py-md-3 pl-md-4">
62+
<main role="main" class="col-12 col-md-7 col-xl-8 py-md-3 pl-md-4">
6363
{{ content }}
6464
<footer class="site-footer">
6565
<!-- <span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a>.</span> -->

0 commit comments

Comments
 (0)