From 9484b3badf650e66d6553db6d475e046fe334cc4 Mon Sep 17 00:00:00 2001 From: woodser <13068859+woodser@users.noreply.github.com> Date: Sun, 18 May 2025 17:02:18 -0400 Subject: [PATCH] fix padding on small buttons --- desktop/src/main/java/haveno/desktop/haveno.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/desktop/src/main/java/haveno/desktop/haveno.css b/desktop/src/main/java/haveno/desktop/haveno.css index ece5ca9153..848d3b8f2b 100644 --- a/desktop/src/main/java/haveno/desktop/haveno.css +++ b/desktop/src/main/java/haveno/desktop/haveno.css @@ -168,7 +168,11 @@ -fx-text-fill: -bs-background-color; } -.compact-button, .table-cell .jfx-button, .action-button.compact-button { +.action-button.compact-button { + -fx-padding: 0 15 0 15; +} + +.compact-button, .table-cell .jfx-button { -fx-padding: 0 7 0 7; }