From 044e19e9a7223519cb3446c9c9340fd914de184a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Mon, 13 Nov 2023 19:49:58 +0100 Subject: [PATCH] fix(webui): Overflow of "Used" section in Attribute Inspect --- webui/src/components/Inspect.svelte | 1 - webui/src/components/widgets/EntryList.svelte | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/webui/src/components/Inspect.svelte b/webui/src/components/Inspect.svelte index 88550b2..fd2e8b6 100644 --- a/webui/src/components/Inspect.svelte +++ b/webui/src/components/Inspect.svelte @@ -514,7 +514,6 @@ > diff --git a/webui/src/components/widgets/EntryList.svelte b/webui/src/components/widgets/EntryList.svelte index 35b55b3..f84b1cd 100644 --- a/webui/src/components/widgets/EntryList.svelte +++ b/webui/src/components/widgets/EntryList.svelte @@ -49,7 +49,7 @@ case ATTR_COL: return "minmax(1em, 1fr)"; default: - return "minmax(1em, 2fr)"; + return "auto"; } }) as string[] ) @@ -442,6 +442,7 @@ .cell { font-family: var(--monospace-font); line-break: anywhere; + min-width: 0; border-radius: 4px; padding: 2px;