summaryrefslogtreecommitdiff
path: root/app/views/layouts/application.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/layouts/application.html.erb')
-rw-r--r--app/views/layouts/application.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index db94682..3dad62b 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -14,14 +14,14 @@
<body class="flex flex-col min-h-screen bg-orange-100 text-orange-900">
<nav class="flex flex-wrap items-center justify-between px-4 py-2 text-display">
- <div class="flex flex-grow items-center space-x-8">
+ <div class="flex flex-grow items-center space-x-8 nav-links">
<%= link_to root_path, class: "text-xl flex items-center space-x-4" do %>
<%= image_tag "poke_ball_original_small.png", size: 60 %>
<span>Cable Club</span>
<% end %>
<%= link_to "Runs", runs_path %>
</div>
- <div class="space-x-8">
+ <div class="space-x-8 nav-links">
<% if user_signed_in? %>
<%= link_to "Profile", "#" %>
<%= link_to "Sign out", destroy_user_session_path %>