fix: more alignment

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-26 07:58:44 +02:00
parent 2891e96069
commit 60bacd84f0
3 changed files with 41 additions and 0 deletions

View File

@@ -766,6 +766,9 @@ button {
height: 35px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 8px;
background-color: var(--vscode-sideBar-background);
border-bottom: 1px solid var(--vscode-panel-border);
}
@@ -787,6 +790,26 @@ button {
color: var(--vscode-tab-activeForeground);
}
.panel-close {
background: transparent;
border: none;
color: var(--vscode-descriptionForeground);
font-size: 18px;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
border-radius: 4px;
padding: 0;
}
.panel-close:hover {
background-color: var(--vscode-list-hoverBackground);
color: var(--vscode-editor-foreground);
}
.panel-content {
flex: 1;
overflow: auto;