From 79176271ec34b555b564572e02c57a979dbaddc7 Mon Sep 17 00:00:00 2001 From: dev Date: Sat, 27 Jun 2026 07:34:52 +0200 Subject: fix: restore html height: 100% in cinema views for background image Page-specific @section('styles') had height: inherit which broke the body background-attachment: fixed + background-size: cover from _background.scss. Reverted to height: 100% matching the original SCSS. --- resources/views/list.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'resources/views/list.blade.php') diff --git a/resources/views/list.blade.php b/resources/views/list.blade.php index 5878aa9..9cf9894 100644 --- a/resources/views/list.blade.php +++ b/resources/views/list.blade.php @@ -6,7 +6,7 @@ @if ( 0 != $count ) html { - height: inherit; + height: 100%; } .hn { display: inline-block; -- cgit v1.2.3