Skip to content

Commit

Permalink
style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jones-sam committed May 1, 2020
1 parent e2579e2 commit 71c47d9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/views/shared/_helps_modal.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<% else %>
<h5>Manage applications (<%= task.helps.count %>)</h5>
<% task.helps.each_with_index do |help, index| %>
<div class="modal-help d-flex justify-content-between aling-items-center px-3">
<div class="modal-help-message d-flex align-items-center">
<div class="modal-help d-flex justify-content-between px-3">
<div class="modal-help-message d-flex ">
<div class="modal-user-container">
<% if help.user.avatar.attached? %>
<%= cl_image_tag help.user.avatar.key, class: "avatar" %>
Expand All @@ -27,12 +27,12 @@
<h6><%=link_to(help.user.shortname, user_path(help.user))%></h6>
</div>

<div class="ml-3 d-flex align-items-center flex-wrap">
<div class="ml-3 d-flex align-items-center flex-wrap align-self-start">
<h5 class="w-100 m-0"><strong><%= humanized_money_with_symbol(help.bid) %></strong></h5>
<% if help.message.nil? %>
<p class="m-0"><i><%= help.user.first_name %> did not provide a message.</i></p>
<% else %>
<p class="m-0"><%= help.message %></p>
<p class="m-0 pr-3"><%= help.message %></p>
<% end %>
</div>
</div>
Expand Down

0 comments on commit 71c47d9

Please sign in to comment.