From 2f372e44e7de70409f5396405e9e124b5688bd08 Mon Sep 17 00:00:00 2001 From: avivkeller Date: Sat, 1 Aug 2026 13:04:21 -0700 Subject: [PATCH] chore(ui): improve width of containers --- .changeset/public-baths-open.md | 5 +++++ .../ui-components/src/Common/ChangeHistory/index.module.css | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .changeset/public-baths-open.md diff --git a/.changeset/public-baths-open.md b/.changeset/public-baths-open.md new file mode 100644 index 0000000000000..df12fb393d206 --- /dev/null +++ b/.changeset/public-baths-open.md @@ -0,0 +1,5 @@ +--- +'@node-core/ui-components': patch +--- + +Improve the width of ChangeHistory diff --git a/packages/ui-components/src/Common/ChangeHistory/index.module.css b/packages/ui-components/src/Common/ChangeHistory/index.module.css index 91241657f5d18..77f0456be9952 100644 --- a/packages/ui-components/src/Common/ChangeHistory/index.module.css +++ b/packages/ui-components/src/Common/ChangeHistory/index.module.css @@ -32,7 +32,8 @@ z-50 mt-1 max-h-80 - w-52 + w-[26rem] + max-w-[calc(100vw-2rem)] overflow-hidden rounded-sm border @@ -45,7 +46,7 @@ .dropdownContentInner { @apply max-h-80 - w-52 + w-full overflow-y-auto; }