775 B42 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.dropdown-fields {
9 display: flex;
10 flex-direction: column;
11 gap: var(--halfpad);
12 height: 100%;
13}
14
15.dropdown-fields-header {
16 display: flex;
17 flex-direction: row;
18 gap: var(--halfpad);
19 align-items: center;
20 margin: var(--halfpad);
21}
22
23.dropdown-fields-content {
24 display: flex;
25 flex-direction: column;
26 gap: calc(2 * var(--pad));
27 margin: calc(-1 * var(--pad));
28 padding: calc(2 * var(--pad));
29 overflow-y: scroll;
30 height: 100%;
31}
32
33.dropdown-field {
34 display: flex;
35 flex-direction: column;
36 gap: var(--halfpad);
37}
38
39.dropdown-field strong {
40 font-size: 90%;
41}
42