update storage config template
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<div class="max-w-6xl mb-4 mx-auto px-2 py-3 flex items-center justify-between">
|
||||
<div class="max-w-6xl mb-4 mx-auto px-4 md:px-2 py-3 flex items-center justify-between">
|
||||
<a href="<%= root_path %>" class="text-2xl font-bold items-center flex space-x-2">
|
||||
<%= render 'shared/logo' %>
|
||||
<span>DocuSeal</span>
|
||||
@@ -12,7 +12,7 @@
|
||||
</label>
|
||||
<ul tabindex="0" class="dropdown-content p-2 mt-2 shadow-2xl menu bg-white rounded-box whitespace-nowrap">
|
||||
<li class>
|
||||
<%= link_to 'Profile', '', class: 'text-right' %>
|
||||
<%= link_to 'Profile', settings_profile_index_path, class: 'text-right' %>
|
||||
</li>
|
||||
<li class>
|
||||
<%= link_to 'Sign out', destroy_user_session_path, data: { turbo_method: :delete } %>
|
||||
|
||||
@@ -1,32 +1,22 @@
|
||||
<menu-active class="block w-full md:w-52">
|
||||
<div class="-ml-3.5">
|
||||
<ul class="menu menu-compact px-2">
|
||||
<ul class="menu menu-compact px-2 space-y-1">
|
||||
<li class="menu-title"><span>Settings</span></li>
|
||||
<li></li>
|
||||
<li>
|
||||
<a href="<%= settings_profile_index_path %>" class="hover:bg-base-300 text-base">
|
||||
Profile
|
||||
</a>
|
||||
<%= link_to 'Profile', settings_profile_index_path, class: "text-base hover:bg-base-300" %>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<%= settings_email_index_path %>" class="hover:bg-base-300 text-base">
|
||||
Email
|
||||
</a>
|
||||
<%= link_to 'Email', settings_email_index_path, class: "text-base hover:bg-base-300" %>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<%= settings_storage_index_path %>" class="hover:bg-base-300 text-base">
|
||||
Storage
|
||||
</a>
|
||||
<%= link_to 'Storage', settings_storage_index_path, class: "text-base hover:bg-base-300" %>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<%= settings_esign_index_path %>" class="hover:bg-base-300 text-base">
|
||||
eSign
|
||||
</a>
|
||||
<%= link_to 'eSign', settings_esign_index_path, class: "text-base hover:bg-base-300" %>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<%= settings_users_path %>" class="hover:bg-base-300 text-base">
|
||||
Team
|
||||
</a>
|
||||
<%= link_to 'Team', settings_users_path, class: "text-base hover:bg-base-300" %>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user