Don't add extra right margin to layout controls (#172306)

#168910 added a right margin between layout control elements. However this also added a right margin to the last element, shifting the layout controls right by 4px

This change switch to use `gap` instead so that there's a 4px margin between elements but no extra margin for the set of layout control buttons
This commit is contained in:
Matt Bierner 2023-01-24 16:19:14 -08:00 committed by GitHub
parent e96c9fb0b2
commit dd427d837e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -120,8 +120,8 @@
/* see #55435 */
}
.monaco-workbench .part.titlebar > .titlebar-container .monaco-toolbar .action-item {
margin-right: 4px;
.monaco-workbench .part.titlebar > .titlebar-container .monaco-toolbar .actions-container {
gap: 4px;
}
/* Window Title Menu */