From 32e44c2f2af2ab10f89907f99e2774a77d2c9338 Mon Sep 17 00:00:00 2001 From: fynks <75840152+fynks@users.noreply.github.com> Date: Sun, 12 Oct 2025 18:39:07 +0500 Subject: [PATCH] fix: adjust button padding for better layout and improve table cell word wrapping --- dist/css/styles.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dist/css/styles.css b/dist/css/styles.css index ab2c5b3..f4e8dd3 100644 --- a/dist/css/styles.css +++ b/dist/css/styles.css @@ -1103,9 +1103,8 @@ button:focus-visible { display: none; position: fixed; inset: 0; - padding: var(--space-3xl) var(--space-xl) var(--space-3xl); - padding-top: var(--space-3xl); - padding-top: calc(var(--space-3xl) + env(safe-area-inset-top)); + padding: var(--space-xl) var(--space-xl) var(--space-3xl); + padding-top: calc(var(--space-xl) + env(safe-area-inset-top, 0px)); background: linear-gradient(180deg, rgba(248, 250, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 55%, rgba(255, 255, 255, 0.94) 100%); border: none; box-shadow: none; @@ -2076,7 +2075,7 @@ table { td, th { word-break:normal; - word-wrap:break-word + word-wrap:break-word; hyphens: auto; white-space: normal; padding: var(--space-lg) var(--space-xl);