Skip to content

Commit a438015

Browse files
author
workaholicpanda
committed
fix: table column header less
1 parent a70a770 commit a438015

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

components/dash-table/src/dash-table/components/Table/Table.less

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,11 @@
512512
.not-selectable();
513513
cursor: pointer;
514514
}
515+
516+
.column-header-wrapper {
517+
display: flex;
518+
justify-content: space-between;
519+
}
515520
}
516521

517522
tr {

components/dash-table/src/dash-table/derived/header/content.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ function getter(
283283
);
284284

285285
return (
286-
<div>
286+
<div className='column-header-wrapper'>
287287
{!column_selectable || !selectable ? null : (
288288
<span className='column-header--select'>
289289
<input

0 commit comments

Comments
 (0)