diff --git a/app/assets/stylesheets/participation.scss b/app/assets/stylesheets/participation.scss index 75a8e93fa..7b92ac831 100644 --- a/app/assets/stylesheets/participation.scss +++ b/app/assets/stylesheets/participation.scss @@ -1284,6 +1284,7 @@ } .budget-execution { + @include card; border: 1px solid $border; overflow: hidden; position: relative; diff --git a/app/views/budgets/executions/_investments.html.erb b/app/views/budgets/executions/_investments.html.erb index 4a8d20834..e0f3abfdd 100644 --- a/app/views/budgets/executions/_investments.html.erb +++ b/app/views/budgets/executions/_investments.html.erb @@ -5,19 +5,20 @@
<% investments.each do |investment| %>
-
- <%= link_to budget_investment_path(@budget, investment, anchor: "tab-milestones"), data: { "equalizer-watch": true } do %> - <%= render Budgets::Executions::ImageComponent.new(investment) %> -
-
-
<%= investment.title %>
- <%= investment.author.name %> -
-

- <%= investment.formatted_price %> -

+
+ <%= render Budgets::Executions::ImageComponent.new(investment) %> +
+
+
+ <%= link_to investment.title, + budget_investment_path(@budget, investment, anchor: "tab-milestones") %> +
+ <%= investment.author.name %>
- <% end %> +

+ <%= investment.formatted_price %> +

+
<% end %>