Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/navigation bar #14

Merged
merged 2 commits into from
Oct 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions app/views/app/_navigation_bar.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
<nav class="p-5 bg-blue-500 shadow md:flex md:items-center md:justify-between">
<div class="flex justify-between items-center">
<span class="text-2xl">
BudgetApp
<a href="<%=root_path%>">
BudgetApp
</a>
</span>
<span class="text-3xl cursor-pointer md:hidden block">
<ion-icon name="menu-outline" onclick="Menu(this)"></ion-icon>
</span>
</div>
<ul class="bg-blue-500 md:flex md:items-center z-[-1] md:z-auto md:static absolute w-full left-0
<ul class="bg-blue-500 md:flex md:items-center z-[1] md:z-auto md:static absolute w-full left-0
md:w-auto md:py-0 py-4 md:pl-0 pl-7 md:opacity-100 opacity-0 top-[-400px]
transition-all ease-in duration-500">
<li class="mx-4 my-6 md:my-0">
Expand Down
Loading