From 6416659f350a3b0ab25501517c62e678b8f5935b Mon Sep 17 00:00:00 2001 From: osman Date: Fri, 29 Aug 2025 18:25:34 -0700 Subject: [PATCH] Center align "Save changes" button label in Options Within the Options page, the `#save` button is displayed as "No changes" (10 chars) on load. When `onUpdated()` is called in `pages/options.js`, it turns into "Save changes" (12 chars). This commit ensures that the update label is appropriately centered, even if that means less padding on left/right, as opposed to having more padding on left/right in the fixed size button. --- pages/options.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pages/options.css b/pages/options.css index d6fc87db7..68df6f051 100644 --- a/pages/options.css +++ b/pages/options.css @@ -311,6 +311,9 @@ footer { #save, #exclusion-add-button { + align-items: center; + display: flex; + justify-content: center; white-space: nowrap; width: 110px; }