Skip to content
Merged

Fixes #6857

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion _sass/pages/_default.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,14 @@ body:not(.layout_default) .blog_typography{
justify-content: center;
}

.contentwidth {
> .content {
max-width: 750px;
min-width: 0;

@media only screen and (max-width: 800px) {
width: 100%;
max-width: unset;
}
}

.toc_sidebar {
Expand Down Expand Up @@ -144,4 +150,15 @@ body:not(.layout_default) .blog_typography{
height: 0;
overflow: hidden;
visibility: hidden;
}

body.release-calendar #main_content_wrap {
table {
th, td {
white-space: nowrap;
}
th:first-child, td:first-child {
min-width: 40px;
}
}
}
1 change: 1 addition & 0 deletions faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
layout: default
title: Frequently Asked Questions
body_class: faq
max_page_width: medium
toc: false
---

Expand Down
1 change: 1 addition & 0 deletions quack/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
layout: default
title: Frequently Asked Questions for Quack
body_class: faq
max_page_width: medium
toc: false
---

Expand Down
Loading