@leroysheep / MovieWebApp / commits / f4e63fd83e

gitweb: let page header grow on mobile for long wrapped project names

On mobile, long project names in the page header can wrap to multiple lines, but the fixed 25px header height does not grow with wrapped content. Switch the header from fixed height to min-height so it expands as needed while keeping the same baseline height for single-line titles. Signed-off-by: Rito Rhymes <rito@ritovision.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Rito Rhymes committed Feb 16, 2026 at 15:53 UTC f4e63fd83e5b33f0113cb7e2231d013c515f0a8b
1 file changed +1 -1
gitweb/static/gitweb.css
+1 -1
index 8247646063..e2e6dd96a2 100644 --- a/gitweb/static/gitweb.css +++ b/gitweb/static/gitweb.css @@ -42,7 +42,7 @@ a.list img.avatar { } div.page_header { - height: 25px; + min-height: 25px; padding: 8px; font-size: 150%; font-weight: bold;