Skip to content

Commit 617745e

Browse files
committed
Fix: Equalize Status Filter and Import Cluster button sizes
1 parent b40588c commit 617745e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

frontend/src/components/its/ClustersTable/components/TableHeader.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,10 @@ const TableHeader: React.FC<TableHeaderProps> = ({
270270
'&:hover': { bgcolor: colors.primaryDark },
271271
textTransform: 'none',
272272
fontWeight: '600',
273-
padding: '8px 20px',
274-
borderRadius: '8px',
273+
// Match size with Status Filter button
274+
padding: '8px 16px',
275+
height: '45px',
276+
borderRadius: '10px',
275277
boxShadow: isDark
276278
? '0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2)'
277279
: '0 4px 6px -1px rgba(47, 134, 255, 0.2), 0 2px 4px -2px rgba(47, 134, 255, 0.1)',
@@ -286,4 +288,4 @@ const TableHeader: React.FC<TableHeaderProps> = ({
286288
);
287289
};
288290

289-
export default TableHeader;
291+
export default TableHeader;

0 commit comments

Comments
 (0)