Replies: 1 comment
-
I had the same issue, but managed to solve it First setup your custom css, and then add some codes like this: :root {
--vp-layout-max-width: 1920px;
}
.VPDoc:not(.has-sidebar) .container {
max-width: 1584px !important;
}
.VPDoc:not(.has-sidebar) .content {
max-width: 1264px !important;
}
.VPDoc.has-aside .content-container {
max-width: 1168px !important;
} My website is successfully modified over 688px using this technique |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
To change the page to full screen, I need to introduce this configuration
I wonder why the max-width of .content-container is 688px, should it not be controlled by the outer container or add css var
Or if there's a better way to write it
Beta Was this translation helpful? Give feedback.
All reactions