977 B60 lines
Blame
1/**
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8.bug-dropdown {
9 max-width: 400px;
10 min-width: 400px;
11}
12
13.bug-dropdown-version {
14 font-size: 80%;
15 opacity: 0.8;
16 display: flex;
17 flex-direction: column;
18 gap: var(--halfpad);
19}
20
21.bug-dropdown-actions {
22 gap: var(--pad);
23 display: flex;
24 flex-direction: column;
25 width: 100%;
26}
27
28.bug-dropdown-actions vscode-button {
29 justify-content: center;
30}
31
32.bug-dropdown-debug-actions {
33 gap: var(--pad);
34 display: flex;
35 flex-direction: row;
36 justify-content: center;
37 width: 100%;
38}
39
40.additional-debug-content {
41 display: flex;
42 flex-direction: column;
43 gap: var(--pad);
44}
45
46.bug-button-nux {
47 display: flex;
48 flex-direction: row;
49 align-items: center;
50 gap: var(--pad);
51}
52
53.bug-dropdown .error-notice {
54 margin: 0;
55}
56
57.bug-dropdown .log-file-path {
58 font-size: 80%;
59}
60