Skip to content

Commit

Permalink
Merge pull request #75 from JHWelch/improve-visuals
Browse files Browse the repository at this point in the history
Improve visuals
  • Loading branch information
JHWelch authored Dec 6, 2023
2 parents 80d2626 + db8193b commit 5930067
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion views/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<a
href="#now-playing"
class="flex items-center justify-center w-full px-4 py-2 mt-2 space-x-2 text-lg font-semibold text-white rounded-md h-14 md:w-auto bg-violet-600 hover:bg-violet-500 focus:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:ring-violet-500"
>🍿 Jump to the Movies 🍿</a>
>Jump to the Movies 🍿</a>
</div>

<div class="mt-4 space-y-4 leading-7 md:mt-8">
Expand Down
2 changes: 1 addition & 1 deletion views/partials/navbar.ejs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<nav class="flex justify-center h-12 bg-violet-200">
<div class="flex items-center w-full h-full max-w-6xl">
<div class="flex items-center w-full h-full max-w-4xl">
<%- include('navbar/button', { text: 'Upcoming', route: '/' }) %>

<%- include('navbar/button', { text: 'Previous', route: '/previous' }) %>
Expand Down
2 changes: 1 addition & 1 deletion views/partials/navbar/button.ejs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<a
href="<%= route %>"
class="h-full py-2 px-4 font-medium flex flex-col justify-center grow sm:grow-0 <%= route === path
class="h-full py-2 px-4 font-medium flex flex-col justify-center items-center grow sm:grow-0 <%= route === path
? 'text-white bg-violet-600'
: 'text-gray-800 hover:bg-violet-300'
%>"
Expand Down

0 comments on commit 5930067

Please sign in to comment.