Browse Source

Disable repeating background on movie modal

master
David Ludwig 4 years ago
parent
commit
e0ff2717a4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/app/components/modals/MovieModal.vue

+ 1
- 1
src/app/components/modals/MovieModal.vue View File

@ -5,7 +5,7 @@
@before-enter="lockScroll(true)" @enter-cancelled="lockScroll(false)"
@leave="lockScroll(false)" @leave-cancelled="lockScroll(true)">
<div v-if="movie !== undefined" class="relative w-full max-w-6xl bg-white md:bg-none overflow-hidden rounded-xl flex-col flex-shrink-0 shadow-xl">
<div class="bg-center bg-cover" :class="{ 'text-white': isDark }"
<div class="bg-center bg-cover bg-no-repeat" :class="{ 'text-white': isDark }"
:style="movie.backdropPath ? `background: url('/api/tmdb/image/w1280${movie.backdropPath}')` : ''">
<div class="movie-modal-content z-10" :style="backdropOverlayStyle">
<div class="flex p-4 items-center">


Loading…
Cancel
Save