Skip to content

Commit e6a98ff

Browse files
authored
fix: flicker on expanding in dynamic mode (#188)
1 parent 49a097a commit e6a98ff

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## NEXT VERSION
44

5+
- fix: flicker on expanding in dynamic mode
6+
57
## v1.10.3 (2020-06-30)
68

79
- fix: horizontal scrollbar in flex mode with dynamic row height

src/_BaseTable.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,13 @@ $table-prefix: BaseTable !default;
6060
pointer-events: none;
6161
}
6262

63+
&--dynamic {
64+
.#{$table-prefix}__row {
65+
overflow: hidden;
66+
align-items: stretch;
67+
}
68+
}
69+
6370
&:not(.#{$table-prefix}--dynamic),
6471
.#{$table-prefix}__row--frozen {
6572
.#{$table-prefix}__row-cell-text {

0 commit comments

Comments
 (0)