mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-13 23:44:09 +01:00
15 lines
509 B
CSS
15 lines
509 B
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
.monaco-builder-hidden {
|
|
display: none !important;
|
|
visibility: hidden !important;
|
|
}
|
|
|
|
.monaco-builder-visible {
|
|
display: inherit;
|
|
visibility: visible;
|
|
}
|