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/topicindex.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'resources/views/topicindex.blade.php') diff --git a/resources/views/topicindex.blade.php b/resources/views/topicindex.blade.php index 67b0de4..81c9bf2 100644 --- a/resources/views/topicindex.blade.php +++ b/resources/views/topicindex.blade.php @@ -3,7 +3,7 @@ @section('styles') @include ('layouts.footer-style') html { - height: inherit; + height: 100%; } @endsection -- cgit v1.2.3