glance
glance copied to clipboard
Screen Size
Description
On larger screens Glance leaves some dead space on either side of the content. I have narrowed it down to
.content-bounds {
max-width: 1600px; <- HERE
width: 100%;
margin-inline: auto;
padding: 0 var(--content-bounds-padding);
}
is it possible to have an option within the yaml to set a max width
There is no way to set a custom value via the config, however you can set width: wide on each page which will increase the max width to 1920px. If you want something larger than that or more specific, it would have to be done via custom CSS.
Thats perfect thank you!!