Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/base/browser/ui/countBadge/countBadge.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
.monaco-count-badge {
7
padding: 3px 6px;
8
border-radius: 11px;
9
font-size: 11px;
10
min-width: 18px;
11
min-height: 18px;
12
line-height: 11px;
13
font-weight: normal;
14
text-align: center;
15
display: inline-block;
16
box-sizing: border-box;
17
}
18
19
.monaco-count-badge.long {
20
padding: 2px 3px;
21
border-radius: 2px;
22
min-height: auto;
23
line-height: normal;
24
}
25
26