Skip to content
Merged
Changes from 1 commit
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
6 changes: 6 additions & 0 deletions apify-docs-theme/src/theme/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,12 @@ html[data-theme="dark"] .DocSearch-Button .DocSearch-Search-Icon {
margin: auto;
}

@media (min-width: 1440px) {
.main-wrapper > div {
width: var(--max-layout-width);
}
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about adding width: 100%, without the media query? Looks good on my end locally.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Huh, the tunnel vision is real 👀

width: 100% really does seem to work, desktops and mobile layouts alike. 👍🏽


@media (max-width: 960px) {
.main-wrapper > div {
max-width: 100%;
Expand Down