diff --git a/app/assets/stylesheets/application.tailwind.css b/app/assets/stylesheets/application.tailwind.css
index d3ba7908..110f31d0 100644
--- a/app/assets/stylesheets/application.tailwind.css
+++ b/app/assets/stylesheets/application.tailwind.css
@@ -107,8 +107,12 @@
@apply bg-gray-900 text-white hover:bg-gray-700;
}
- .btn--light {
- @apply bg-gray-25 border border-alpha-black-200 text-gray-900 hover:bg-gray-50;
+ .btn--outline {
+ @apply border border-alpha-black-200 text-gray-900 hover:bg-gray-50;
+ }
+
+ .btn--ghost {
+ @apply border border-transparent text-gray-900 hover:bg-gray-50;
}
}
diff --git a/app/models/demo/generator.rb b/app/models/demo/generator.rb
index 76b54918..20e5c01c 100644
--- a/app/models/demo/generator.rb
+++ b/app/models/demo/generator.rb
@@ -70,6 +70,7 @@ class Demo::Generator
email: "user@maybe.local",
first_name: "Demo",
last_name: "User",
+ role: "admin",
password: "password"
end
diff --git a/app/views/accounts/_sync_all_button.html.erb b/app/views/accounts/_sync_all_button.html.erb
index 9b5f7213..0cf16bbd 100644
--- a/app/views/accounts/_sync_all_button.html.erb
+++ b/app/views/accounts/_sync_all_button.html.erb
@@ -1,4 +1,4 @@
-<%= button_to sync_all_accounts_path, class: "btn btn--light flex items-center gap-2", title: "Sync All" do %>
+<%= button_to sync_all_accounts_path, class: "btn btn--outline flex items-center gap-2", title: "Sync All" do %>
<%= lucide_icon "refresh-cw", class: "w-5 h-5" %>
<%= t("accounts.sync_all.button_text") %>
<% end %>
diff --git a/app/views/settings/_nav.html.erb b/app/views/settings/_nav.html.erb
index 3ed3c58b..7edaf8a8 100644
--- a/app/views/settings/_nav.html.erb
+++ b/app/views/settings/_nav.html.erb
@@ -1,66 +1,76 @@
-
- <%= link_to return_to_path(params), class: "flex items-center gap-1 text-gray-900 font-medium text-sm" do %>
- <%= lucide_icon "chevron-left", class: "w-5 h-5 text-gray-500" %>
- Back
- <% end %>
-
- esc
-
-
-