Apply margin to action items (#236638)

Fixes https://github.com/microsoft/vscode/issues/233699
pull/236642/head
Tyler James Leonhardt 2024-12-19 12:09:55 -08:00 committed by GitHub
parent 2217f51cf8
commit e48d729d21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 2 deletions

View File

@ -26,8 +26,14 @@
flex: 1;
}
.quick-input-inline-action-bar {
margin: 2px 0 0 5px;
/* give some space between input and action bar */
.quick-input-inline-action-bar > .actions-container > .action-item:first-child {
margin-left: 5px;
}
/* center horizontally */
.quick-input-inline-action-bar > .actions-container > .action-item {
margin-top: 2px;
}
.quick-input-title {