Skip to content

Commit 8232ce4

Browse files
committed
feat: Adjust table max-height and update Banner component styles for consistency
1 parent 6334a52 commit 8232ce4

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

src/vue/analyze/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
:data="tableData"
1919
style="width: 100%"
2020
v-loading="tableLoading"
21-
max-height="70vh"
21+
max-height="65vh"
2222
show-summary
2323
:summary-method="getSummaries"
2424
highlight-current-row

src/vue/components/Banner.vue

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ window.addEventListener('message', (e) => {
3636
display: flex;
3737
padding: 20px;
3838
gap: 8px;
39-
background: var(--vscode-editor-background);
40-
color: var(--vscode-editor-foreground);
39+
background: var(--app-bg);
40+
color: var(--app-fg);
41+
border-bottom: 1px solid var(--app-border);
4142
}
4243
.logo {
4344
height: 60px;
@@ -49,16 +50,16 @@ window.addEventListener('message', (e) => {
4950
h1 {
5051
font-size: 16px;
5152
font-weight: 500;
52-
color: var(--vscode-editor-foreground);
53+
color: var(--app-fg);
5354
margin: 0;
5455
}
5556
p {
5657
font-size: 12px;
57-
color: var(--vscode-editor-foreground);
58+
color: var(--app-fg-secondary);
5859
margin: 4px 0 8px;
5960
}
6061
.bar {
6162
height: 3px;
62-
background: linear-gradient(90deg, #32B7BC, #fff);
63+
background: linear-gradient(90deg, #32B7BC, var(--app-bg));
6364
}
6465
</style>

0 commit comments

Comments
 (0)