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 00764e7 commit 19d87ceCopy full SHA for 19d87ce
src/components/Table/table.scss
@@ -4,6 +4,11 @@
4
@import '~igz-controls/scss/borders';
5
@import '~igz-controls/scss/shadows';
6
7
+@mixin tableCellWidth {
8
+ flex: 0 0 auto;
9
+ min-width: 75px;
10
+}
11
+
12
.table {
13
&__flex {
14
display: flex;
@@ -40,8 +45,7 @@
40
45
}
41
46
42
47
& [class*='table-cell-'] {
43
- flex: 0 0 auto;
44
- min-width: 75px;
48
+ @include tableCellWidth;
49
50
51
.table-row {
@@ -168,6 +172,8 @@
168
172
169
173
&-header {
170
174
&__cell {
175
176
171
177
&.buttonPopout,
178
&.buttonDownload {
179
@include tableColumnFlex(0.5, 80px);
@@ -187,6 +193,8 @@
187
193
color: $mulledWine;
188
194
189
195
196
197
190
198
&_hidden {
191
199
visibility: hidden;
192
200
0 commit comments