aclist / kbin-kes

Add-on manager and scripting framework for kbin
MIT License
24 stars 8 forks source link

[BUG] If multiple mods add elements to the navbar, the KES icon gets pushed to the right with no padding #271

Closed aclist closed 5 months ago

aclist commented 6 months ago

The navbar background does not span the apparent width of the page, causing the last element to abut the edge of the border:

1712370123

aclist commented 5 months ago

This is not always the case, but is caused at certain combinations of zoom level, too many elements added to the navbar, and when the KES update icon is present. It is caused by the setting max-width: 1360px being applied to the .kbin-container selector, which applies to both the navbar container and the body container and is used to restrain the size to a centered, mobile-like view. It should be fixable by applying #header .kbin-container { max-width: 100%; }.

aclist commented 5 months ago

Resolved by 8a6020a