fix(settings/providers): center-align Sync all next to the lede

`items-start` made the button hug the first line when the lede wrapped;
on a single line the button sat at the top of the text bounding box
which read slightly off. Center matches the dominant convention
across the rest of settings (api_keys, securities, hostings, _section,
_settings_nav_link_large).
This commit is contained in:
Guillem Arias
2026-05-09 13:37:16 +02:00
committed by Guillem Arias
parent e57f7ce8df
commit 8c961958b4

View File

@@ -12,7 +12,7 @@
</div>
</div>
<% else %>
<div class="flex items-start justify-between gap-4">
<div class="flex items-center justify-between gap-4">
<p class="text-secondary"><%= t("settings.providers.bank_sync.lede") %></p>
<% if @connected.any? || @needs_attention.any? %>
<% sync_all_disabled = Current.family.last_sync_all_attempted_at.present? && Current.family.last_sync_all_attempted_at > 30.seconds.ago %>