Skip to content

Commit

Permalink
Merge pull request #3338 from projectblacklight/align-self
Browse files Browse the repository at this point in the history
Fix float attempt on flex item
  • Loading branch information
corylown authored Dec 11, 2024
2 parents d2bcd08 + 9ef295d commit ea33887
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/spotlight/admin_users/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<div class="mb-4">
<h3 class="instructions"><%= t :'.admins_curators' %></h3>
<div id="admins_curators" class="card card-body bg-light">
<div class='btn-toolbar float-right float-end'>
<div class='btn-toolbar float-right align-self-end'>
<button class="btn btn-sm btn-secondary copy-email-addresses" data-clipboard-target="#admins_curators">
<%= t('.copy') %>
</button>
Expand Down Expand Up @@ -87,7 +87,7 @@
data: { method: :delete, turbo_method: :delete },
class: 'btn btn-sm btn-danger') unless user == current_user %>
<% else %>
<%= link_to(t('.update'), admin_user_path(user),
<%= link_to(t('.update'), admin_user_path(user),
data: { method: :patch, turbo_method: :patch },
class: 'btn btn-sm btn-secondary') %>
<% end %>
Expand Down

0 comments on commit ea33887

Please sign in to comment.