From dfbcb8125cfd7414734ad3a02a4b8ef0ecd33d06 Mon Sep 17 00:00:00 2001 From: Spicy_Marinara Date: Tue, 14 Oct 2025 19:49:05 +0200 Subject: [PATCH] Fix button sizes: Remove ALL margins and set both buttons to 353x33px - Remove all margins from both Refresh RPG Info and Settings buttons - Set exact dimensions: width 353px, height 33px for both buttons - Remove padding and use box-sizing: border-box for precise sizing - Both buttons now identical in size --- style.css | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/style.css b/style.css index bc8ff18..d7cfa22 100644 --- a/style.css +++ b/style.css @@ -2402,8 +2402,10 @@ body:has(.rpg-panel.rpg-position-left) #sheld { MANUAL UPDATE BUTTON ============================================ */ .rpg-manual-update-btn { - width: 100%; - padding: 8px; + width: 353px; + height: 33px; + margin: 0; + padding: 0; background: linear-gradient(135deg, var(--rpg-highlight), var(--rpg-accent)); border: 2px solid var(--rpg-highlight); border-radius: 8px; @@ -2418,8 +2420,7 @@ body:has(.rpg-panel.rpg-position-left) #sheld { gap: 6px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); flex-shrink: 0; - margin: 0 0 0 0; - margin-top: -6px; + box-sizing: border-box; } .rpg-manual-update-btn:hover { @@ -2437,9 +2438,10 @@ body:has(.rpg-panel.rpg-position-left) #sheld { SETTINGS BUTTON ============================================ */ .rpg-btn-settings { - width: 100%; + width: 353px; + height: 33px; margin: 0; - padding: 8px; + padding: 0; background: var(--rpg-accent); border: 2px solid var(--rpg-border); border-radius: 8px; @@ -2454,6 +2456,7 @@ body:has(.rpg-panel.rpg-position-left) #sheld { gap: 6px; flex-shrink: 0; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); + box-sizing: border-box; } .rpg-btn-settings:hover {