<% @selected_workflow.stages.each do |stage| %>
<%= button_to_set_stage @bubble, stage %>
diff --git a/app/views/buckets/_bucket.html.erb b/app/views/buckets/_bucket.html.erb
index fc270bc8d..ac6c37231 100644
--- a/app/views/buckets/_bucket.html.erb
+++ b/app/views/buckets/_bucket.html.erb
@@ -1,13 +1,10 @@
<% cache bucket do %>
- <%= link_to bubbles_path(bucket_ids: [ bucket ]), class: "windshield__container flex justify-center align-center position-relative" do %>
+ <%= link_to bubbles_path(bucket_ids: [ bucket ]), class: "border border-radius margin-block-end-half windshield__container flex justify-center align-center position-relative" do %>
<% bucket.bubbles.ordered_by_activity.limit(10).each do |bubble| %>
<% end %>
@@ -15,7 +12,12 @@
<%= link_to bubbles_path(bucket_ids: [ bucket ]), class: "txt-ink flex flex-column" do %>
- In <%= bucket.name %>
+ <%= bucket.name %>
+ <% end %>
+
+ <%= link_to edit_bucket_path(bucket), class: "btn txt-small" do %>
+ <%= image_tag "settings.svg", aria: { hidden: true }, size: 24 %>
+ Settings for <%= bucket.name %>
<% end %>
diff --git a/app/views/buckets/edit.html.erb b/app/views/buckets/edit.html.erb
index 760044536..f37c0330d 100644
--- a/app/views/buckets/edit.html.erb
+++ b/app/views/buckets/edit.html.erb
@@ -7,8 +7,8 @@
Go back
<% end %>
- <%= form_with model: @bucket, class: "flex align-center gap-half", method: :delete do |form| %>
- <%= form.button class: "btn btn--negative txt-small min-width", data: { turbo_confirm: "Are you sure you want to delete this?" } do %>
+ <%= form_with model: @bucket, class: "flex-item-justify-end", method: :delete do |form| %>
+ <%= form.button class: "btn btn--negative", data: { turbo_confirm: "Are you sure you want to delete this?" } do %>
<%= image_tag "minus.svg", aria: { hidden: true }, size: 24 %>
Delete <%= @bucket.name %>
<% end %>
@@ -18,8 +18,6 @@
<%= form_with model: @bucket, class: "flex flex-column gap txt-large", controller: "form" do |form| %>
- <%= image_tag "bubbles.svg", aria: { hidden: "true" }, size: 150, class: "colorize--black center" %>
-
<%= translation_button(:bucket_name) %>
diff --git a/app/views/buckets/index.html.erb b/app/views/buckets/index.html.erb
index dc5ae2ad1..9d831262b 100644
--- a/app/views/buckets/index.html.erb
+++ b/app/views/buckets/index.html.erb
@@ -14,7 +14,9 @@
<% end %>
-