diff options
| author | dev | 2026-06-27 07:34:52 +0200 |
|---|---|---|
| committer | dev | 2026-06-27 07:34:52 +0200 |
| commit | 79176271ec34b555b564572e02c57a979dbaddc7 (patch) | |
| tree | 6a5a4d0ccaef0f775374feced79e6dd02f68fd7d | |
| parent | 360b89653e612a4810c651c8089370d6fbb10f05 (diff) | |
| download | curious-79176271ec34b555b564572e02c57a979dbaddc7.tar.gz | |
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.
| -rw-r--r-- | resources/views/cinema.blade.php | 2 | ||||
| -rw-r--r-- | resources/views/genre_movies.blade.php | 2 | ||||
| -rw-r--r-- | resources/views/genres.blade.php | 2 | ||||
| -rw-r--r-- | resources/views/list.blade.php | 2 | ||||
| -rw-r--r-- | resources/views/topicindex.blade.php | 2 | ||||
| -rw-r--r-- | resources/views/topicpopular.blade.php | 2 |
6 files changed, 6 insertions, 6 deletions
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 |
