Skip to content

Commit 19d87ce

Browse files
Fix [Datasets][Preview] data displaying issue (#2133)
1 parent 00764e7 commit 19d87ce

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/components/Table/table.scss

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
@import '~igz-controls/scss/borders';
55
@import '~igz-controls/scss/shadows';
66

7+
@mixin tableCellWidth {
8+
flex: 0 0 auto;
9+
min-width: 75px;
10+
}
11+
712
.table {
813
&__flex {
914
display: flex;
@@ -40,8 +45,7 @@
4045
}
4146

4247
& [class*='table-cell-'] {
43-
flex: 0 0 auto;
44-
min-width: 75px;
48+
@include tableCellWidth;
4549
}
4650

4751
.table-row {
@@ -168,6 +172,8 @@
168172
.table {
169173
&-header {
170174
&__cell {
175+
@include tableCellWidth;
176+
171177
&.buttonPopout,
172178
&.buttonDownload {
173179
@include tableColumnFlex(0.5, 80px);
@@ -187,6 +193,8 @@
187193
color: $mulledWine;
188194

189195
&__cell {
196+
@include tableCellWidth;
197+
190198
&_hidden {
191199
visibility: hidden;
192200

0 commit comments

Comments
 (0)