Skip to content

Commit

Permalink
Fix wrong padding
Browse files Browse the repository at this point in the history
  • Loading branch information
leepeuker committed Aug 19, 2022
1 parent d0a4904 commit a5250ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/page/logMovie.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
{% else %}
<ul class="list-group">
{% for movie in movies %}
<li class="list-group-item list-group-item-action">
<li class="list-group-item list-group-item-action" style="padding: 0.4rem">
<div class="col clearfix" style="cursor: pointer" data-bs-toggle="modal" data-bs-target="#watchDateModal" id="{{ movie.id }}">
<img src="{{ tmdb.generatePosterImageUrl(movie.poster_path) }}" class="rounded float-start" alt="..." width="120rem">
<h5 style="padding-left: 8rem">{{ movie.title }} ({{ movie.release_date|date("Y") }})</h5>
Expand Down

0 comments on commit a5250ba

Please sign in to comment.