Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions examples/sites/src/views/components-doc/common.vue
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,6 @@ defineExpose({ loadPage })
position: sticky;
top: 0;
z-index: var(--docs-tabs-header-zindex);
background-color: #fff;

&::after {
content: '';
Expand All @@ -467,7 +466,7 @@ defineExpose({ loadPage })
display: block;
width: 100%;
height: 16px;
background: linear-gradient(to bottom, #fff, transparent);
background: linear-gradient(to bottom, var(--tv-color-bg-secondary), transparent);
transform: translateY(100%);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/theme/src/grid/vars.less
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
// 表头垂直间距
--tv-Grid-header-padding-y: 4px;
// 表头背景颜色
--tv-Grid-header-bg-color: var(--tv-color-bg);
--tv-Grid-header-bg-color: var(--tv-color-bg-header);
// 表头悬浮高亮背景色
--tv-Grid-header-bg-color-hover: var(--tv-color-bg-hover-1);
// 表头字体颜色
Expand Down
Loading