@webitel/ui-sdk 3.2.55 → 3.2.57
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/dist/ui-sdk.common.js +28 -28
- package/dist/ui-sdk.common.js.map +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.umd.js +28 -28
- package/dist/ui-sdk.umd.js.map +1 -1
- package/dist/ui-sdk.umd.min.js +1 -1
- package/dist/ui-sdk.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/organisms/wt-table/wt-table.vue +2 -0
package/package.json
CHANGED
|
@@ -188,6 +188,7 @@ export default {
|
|
|
188
188
|
.wt-table__head {
|
|
189
189
|
display: block;
|
|
190
190
|
box-sizing: border-box;
|
|
191
|
+
background: var(--table-primary-color);
|
|
191
192
|
border: var(--table-head-border);
|
|
192
193
|
border-color: var(--table-head-border-color);
|
|
193
194
|
border-radius: var(--border-radius);
|
|
@@ -226,6 +227,7 @@ export default {
|
|
|
226
227
|
display: flex;
|
|
227
228
|
align-items: flex-start;
|
|
228
229
|
justify-content: flex-end;
|
|
230
|
+
gap: var(--spacing-xs);
|
|
229
231
|
}
|
|
230
232
|
}
|
|
231
233
|
|