Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/mcp/browser/media/mcpServersView.css
3296 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
.mcp-welcome-container {
7
height: 100%;
8
width: 100%;
9
10
&.hide {
11
display: none;
12
}
13
14
.mcp-welcome-content {
15
display: flex;
16
flex-direction: column;
17
align-items: center;
18
height: 100%;
19
padding: 0px 40px;
20
text-align: center;
21
margin: 20px auto;
22
23
.mcp-welcome-icon {
24
.codicon {
25
font-size: 48px;
26
}
27
}
28
29
.mcp-welcome-title {
30
font-size: 24px;
31
margin-top: 5px;
32
font-weight: 500;
33
line-height: normal;
34
}
35
36
.mcp-welcome-description {
37
max-width: 350px;
38
padding: 0 20px;
39
margin-top: 16px;
40
41
a {
42
color: var(--vscode-textLink-foreground);
43
}
44
}
45
46
.mcp-welcome-button-container {
47
margin-top: 16px;
48
max-width: 320px;
49
width: 100%;
50
}
51
52
}
53
}
54
55