From c1d19e55f4477d94595ce4682300d16ea3aa226b Mon Sep 17 00:00:00 2001 From: Stephen Watkins Date: Tue, 14 Jan 2025 11:55:50 -0500 Subject: [PATCH 1/3] fix(DataGrid): align actions menu to end --- easy-ui-react/src/DataGrid/Cell.module.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/easy-ui-react/src/DataGrid/Cell.module.scss b/easy-ui-react/src/DataGrid/Cell.module.scss index 64e8f852a..bfdd96800 100644 --- a/easy-ui-react/src/DataGrid/Cell.module.scss +++ b/easy-ui-react/src/DataGrid/Cell.module.scss @@ -64,6 +64,7 @@ } .lastWithActions { + text-align: end; padding-left: design-token("space.0.5"); padding-right: design-token("space.2"); position: sticky; From 7156f6ad42a515e5e7bef1094d2a8e2855a21cef Mon Sep 17 00:00:00 2001 From: Stephen Watkins Date: Tue, 14 Jan 2025 11:56:13 -0500 Subject: [PATCH 2/3] changeset --- .changeset/rotten-tips-divide.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/rotten-tips-divide.md diff --git a/.changeset/rotten-tips-divide.md b/.changeset/rotten-tips-divide.md new file mode 100644 index 000000000..ae46ae308 --- /dev/null +++ b/.changeset/rotten-tips-divide.md @@ -0,0 +1,5 @@ +--- +"@easypost/easy-ui": patch +--- + +fix(DataGrid): align actions menu to end From 6638b125bb49e8cdd822fc1af30c1ec6fa6b4df1 Mon Sep 17 00:00:00 2001 From: Stephen Watkins Date: Tue, 14 Jan 2025 11:58:20 -0500 Subject: [PATCH 3/3] order --- easy-ui-react/src/DataGrid/Cell.module.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easy-ui-react/src/DataGrid/Cell.module.scss b/easy-ui-react/src/DataGrid/Cell.module.scss index bfdd96800..a12349f26 100644 --- a/easy-ui-react/src/DataGrid/Cell.module.scss +++ b/easy-ui-react/src/DataGrid/Cell.module.scss @@ -64,11 +64,11 @@ } .lastWithActions { - text-align: end; padding-left: design-token("space.0.5"); padding-right: design-token("space.2"); position: sticky; right: component-token("data-grid", "sticky-right-offset"); + text-align: end; z-index: component-token("data-grid", "cell-stuck-z-index"); }