Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/sessions/contrib/files/browser/media/filesView.css
13405 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
.files-empty-view-body {
7
display: flex;
8
flex-direction: column;
9
height: 100%;
10
padding: 4px 8px;
11
box-sizing: border-box;
12
}
13
14
/* Welcome/Empty state */
15
.files-empty-view-body .files-empty-welcome {
16
display: flex;
17
flex-direction: column;
18
align-items: center;
19
justify-content: center;
20
flex: 1;
21
padding: 32px;
22
text-align: center;
23
gap: 8px;
24
}
25
26
.files-empty-view-body .files-empty-welcome-icon.codicon {
27
font-size: 32px !important;
28
color: var(--vscode-descriptionForeground);
29
opacity: 0.4;
30
}
31
32
.files-empty-view-body .files-empty-welcome-message {
33
color: var(--vscode-descriptionForeground);
34
font-size: 12px;
35
}
36
37