@fkui/design 5.37.2 → 5.37.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/fkui-exp.css +7 -1
- package/lib/fkui-exp.min.css +1 -1
- package/lib/fkui-int.css +7 -1
- package/lib/fkui-int.min.css +1 -1
- package/package.json +2 -2
- package/src/components/table/_table.scss +8 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkui/design",
|
|
3
|
-
"version": "5.37.
|
|
3
|
+
"version": "5.37.3",
|
|
4
4
|
"description": "fkui design",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fkui",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"node": ">= 20",
|
|
67
67
|
"npm": ">= 7"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "4854b4508f6e20b96392a7fcda6c76e5d6217fc2"
|
|
70
70
|
}
|
|
@@ -240,7 +240,7 @@ $table-input-offset-horizontal: 0.25rem;
|
|
|
240
240
|
th {
|
|
241
241
|
padding: densify(var(--f-table-body-row-padding)) var(--f-table-body-row-padding);
|
|
242
242
|
border-bottom: $table-row-separator;
|
|
243
|
-
|
|
243
|
+
vertical-align: top;
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
td {
|
|
@@ -376,6 +376,13 @@ $table-input-offset-horizontal: 0.25rem;
|
|
|
376
376
|
// move margin from <table> to the wrapper div
|
|
377
377
|
margin: $table-margin;
|
|
378
378
|
|
|
379
|
+
thead th,
|
|
380
|
+
thead td,
|
|
381
|
+
tbody th,
|
|
382
|
+
tbody td {
|
|
383
|
+
white-space: nowrap;
|
|
384
|
+
}
|
|
385
|
+
|
|
379
386
|
#{$TABLE_SELECTOR} {
|
|
380
387
|
margin: 0;
|
|
381
388
|
}
|