glance icon indicating copy to clipboard operation
glance copied to clipboard

Screen Size

Open stonkage opened this issue 9 months ago • 1 comments

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

stonkage avatar Mar 15 '25 21:03 stonkage

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.

svilenmarkov avatar Mar 15 '25 23:03 svilenmarkov

Thats perfect thank you!!

stonkage avatar Mar 16 '25 04:03 stonkage