Update navbar for better responsiveness

This commit is contained in:
Eugene Burmakin 2025-09-30 00:45:09 +02:00
parent f6b32371ec
commit 698198db4b
3 changed files with 3 additions and 2 deletions

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-user-icon lucide-user"><path d="M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>

After

Width:  |  Height:  |  Size: 315 B

View file

@ -149,7 +149,8 @@
<li>
<details>
<summary>
<%= "#{current_user.email}" %>
<span class="hidden xl:inline"><%= current_user.email %></span>
<span class="inline xl:hidden"><%= icon 'user' %></span>
<% if onboarding_modal_showable?(current_user) %>
<span class="indicator-item badge badge-secondary badge-xs"></span>
<% end %>

1
db/schema.rb generated
View file

@ -13,7 +13,6 @@
ActiveRecord::Schema[8.0].define(version: 2025_09_28_000001) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_catalog.plpgsql"
enable_extension "pgcrypto"
enable_extension "postgis"
create_table "action_text_rich_texts", force: :cascade do |t|