From f19623425029b3424b86df5f0c3f3218908c5981 Mon Sep 17 00:00:00 2001 From: cinyecai <124623028+cinyecai@users.noreply.github.com> Date: Fri, 22 Nov 2024 10:48:45 -0500 Subject: [PATCH] [DT-997] Move the Donor Size Header in DUOS further left so it aligns with the rest of the table (#2735) --- src/components/data_search/DatasetSearchTableConstants.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/data_search/DatasetSearchTableConstants.tsx b/src/components/data_search/DatasetSearchTableConstants.tsx index 438b2f146..586d4d13b 100644 --- a/src/components/data_search/DatasetSearchTableConstants.tsx +++ b/src/components/data_search/DatasetSearchTableConstants.tsx @@ -25,6 +25,7 @@ interface DatasetSearchTableTabs { const makeHeaderStyle = (width: string | number): React.CSSProperties => ({ width, + marginRight: 5 }); const makeRowStyle = (width: string | number): React.CSSProperties => ({ @@ -32,7 +33,7 @@ const makeRowStyle = (width: string | number): React.CSSProperties => ({ textOverflow: 'ellipsis', textWrap: 'nowrap', overflow: 'hidden', - paddingRight: 5 + marginRight: 5 }); const trimNewlineCharacters = (str: string): string => str?.replace( /[\r\n]+/gm, ''); @@ -243,7 +244,7 @@ export const makeDatasetTableHeader = (datasets: DatasetTerm[], selected: number duosId: '10%', accessType: '10%', dataType: '15%', - donorSize: '7%', + donorSize: '10%', dataLocation: '13%', dataUse: '10%', exportToTerra: 100,