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/cinema.blade.php | 2 +- resources/views/genre_movies.blade.php | 2 +- resources/views/genres.blade.php | 2 +- resources/views/list.blade.php | 2 +- resources/views/topicindex.blade.php | 2 +- resources/views/topicpopular.blade.php | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) (limited to 'resources/views') diff --git a/resources/views/cinema.blade.php b/resources/views/cinema.blade.php index bc08fc8..97ad9cd 100644 --- a/resources/views/cinema.blade.php +++ b/resources/views/cinema.blade.php @@ -4,7 +4,7 @@ @include ('layouts.footer-style') html { - height: inherit; + height: 100%; } .movie-grid { diff --git a/resources/views/genre_movies.blade.php b/resources/views/genre_movies.blade.php index a8a4585..02e9423 100644 --- a/resources/views/genre_movies.blade.php +++ b/resources/views/genre_movies.blade.php @@ -4,7 +4,7 @@ @include ('layouts.footer-style') html { - height: inherit; + height: 100%; } .movie-grid { diff --git a/resources/views/genres.blade.php b/resources/views/genres.blade.php index 1fff8d2..da295db 100644 --- a/resources/views/genres.blade.php +++ b/resources/views/genres.blade.php @@ -3,7 +3,7 @@ @section('styles') @include ('layouts.footer-style') html { - height: inherit; + height: 100%; } @endsection 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; 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 diff --git a/resources/views/topicpopular.blade.php b/resources/views/topicpopular.blade.php index 2259398..59ade5b 100644 --- a/resources/views/topicpopular.blade.php +++ b/resources/views/topicpopular.blade.php @@ -3,7 +3,7 @@ @section ('styles') @include ('layouts.footer-style') html { - height: inherit; + height: 100%; } @endsection -- cgit v1.2.3