Skip to content

Commit

Permalink
fix: wt-table head transparent bg [WTEL-4076]
Browse files Browse the repository at this point in the history
  • Loading branch information
dlohvinov committed Dec 12, 2023
1 parent 92a2160 commit 7b66fe8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webitel/ui-sdk",
"version": "23.12.112",
"version": "23.12.113",
"private": false,
"scripts": {
"dev": "vite",
Expand Down
1 change: 1 addition & 0 deletions src/components/wt-table/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
--table-row-padding: var(--spacing-xs);

--wt-table-head-border-color: var(--grey-lighten-1);
--wt-table-head-background-color: var(--content-wrapper-color);
--wt-table-primary-color: var(--content-wrapper-color);
--wt-table-zebra-color: var(--dp-18-surface-color);
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/wt-table/wt-table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export default {
border: var(--table-head-border);
border-color: var(--wt-table-head-border-color);
border-radius: var(--border-radius);
background: transparent;
background: var(--wt-table-head-background-color);
}
.wt-table__th,
Expand Down

0 comments on commit 7b66fe8

Please sign in to comment.