Skip to content

Commit

Permalink
Improve spacing and sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
JHWelch committed Dec 2, 2023
1 parent bd3a213 commit 2f164e5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions views/partials/movie.ejs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div :class="`px-3 sm:${movieSizeClasses(week)}`">
<div class="flex flex-col px-4 py-2 rounded-md bg-violet-200 ">
<div :class="`px-3 max-w-lg lg:px-5 sm:${movieSizeClasses(week)}`">
<div class="flex flex-col px-4 py-2 rounded-md bg-violet-200">
<h4 class="flex items-center justify-between h-12 md:px-2">
<span
x-text="movie.title"
Expand Down
2 changes: 1 addition & 1 deletion views/partials/movies.ejs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="flex flex-wrap justify-center mt-2 space-y-4 max-w-9xl">
<div class="flex flex-wrap justify-center mt-2 space-y-4 max-w-9xl md:space-y-8">
<template x-for="movie in week.movies">
<%- include('movie.ejs', { showEventDetails }); %>
</template>
Expand Down
5 changes: 2 additions & 3 deletions views/partials/week.ejs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="flex flex-col items-center mt-12 mb-12">
<div class="w-full max-w-4xl px-4">
<div class="flex flex-col md:flex-row md:justify-between md:items-center">
<div class="w-full max-w-4xl px-4 sm:px-8">
<div class="flex flex-col gap-6 md:flex-row md:justify-between md:items-center">
<h3 class="flex flex-col">
<span
class="text-lg font-light text-violet-700"
Expand All @@ -25,7 +25,6 @@
<%- include('icons/rsvp', { htmlClass: 'w-6 h-6 text-white' }) %>
</button>
<% } %>
</div>
</div>
Expand Down

0 comments on commit 2f164e5

Please sign in to comment.