#How do I make the MacOS "decorations" solid?
9 messages · Page 1 of 1 (latest)
At some point I will create a custom "window chrome/decoration", but for now, I'd just like the default to not have this bleeding happening haha.
i've never seen this before i think\
macos 26?
I use the complete default configuration for this (no custom decorations or anything)
notitleBarStyleortrafficLightPositioneither right?
Yep, 26.1 Tahoe.
Nein! Completely default.
I've certainly been a bit confused by it.
Sorta figured it out, though I still have no idea why it would scroll beyond the "webview boundaries" (is the native decoration included in that? haha).
It was because the <html> container was overriding as the primary scroll on this tab, I had to explicitly set overflow: hidden; on it, and then add height: -webkit-fill-available on my "profile UI" container to get the scrollbar to render there instead.
Not sure why I need the fill-available directive, a bit non-standard, but it works! So that's good haha!
☝️ Leaving this here in case it helps anyone in the future searching... I imagine others might bump in to that potentially.