Comment: (UI) tab contents have massive bottom padding that could look better.
Author: allykotetsuCreated Sep 8, 2026Updated Sep 10, 2026
LabelsWeb frontend
Share your bug report, feature request, or comment.
I can't really tell if this is a bug or a feature, but the contents of the About tab (among the others) have a huge bottom padding (from min-height: 50vh), and it looks odds. On desktop this forces the page to be a scrollable even if the content would be small enough to fit on one screen.
What's causing it is the CSS element described below:
.Content-module-scss-module__Cn45pq__bottomPageContentContainer {
background-color: var(--theme-color-components-content-background);
padding: calc(2*var(--content-padding));
border-radius: var(--theme-rounded-corners);
width: 100%;
min-height: 50vh;
margin-bottom: 20px;
}The min-height: 50vh is what's causing the UI to look like that. I personally think it looks much better by omitting that entire line.
I believe this to be a bug because it wasn't like this in previous updates, but I'm labelling this a comment cuz I'm not entirely sure.
Source: owncast/owncast