We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49a097a commit e6a98ffCopy full SHA for e6a98ff
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## NEXT VERSION
4
5
+- fix: flicker on expanding in dynamic mode
6
+
7
## v1.10.3 (2020-06-30)
8
9
- fix: horizontal scrollbar in flex mode with dynamic row height
src/_BaseTable.scss
@@ -60,6 +60,13 @@ $table-prefix: BaseTable !default;
60
pointer-events: none;
61
}
62
63
+ &--dynamic {
64
+ .#{$table-prefix}__row {
65
+ overflow: hidden;
66
+ align-items: stretch;
67
+ }
68
69
70
&:not(.#{$table-prefix}--dynamic),
71
.#{$table-prefix}__row--frozen {
72
.#{$table-prefix}__row-cell-text {
0 commit comments