Mirror of https://github.com/roostorg/osprey
github.com/roostorg/osprey
1.collapsableList {
2 display: flex;
3 flex-direction: column;
4 margin-bottom: 16px;
5}
6
7.exclamationIcon {
8 color: var(--warning-primary);
9 height: 20px;
10 width: 20px;
11 margin: 0 4px;
12}
13
14.listHeader {
15 height: 40px;
16 width: 100%;
17 display: flex;
18 flex-direction: row;
19 border-left: 4px solid var(--divider);
20 background-color: var(--background-secondary);
21 border-radius: 2px 2px 0 0;
22 align-items: center;
23 justify-content: space-between;
24}
25
26.listHeaderClosed {
27 border-radius: 2px;
28}
29
30.listWrapper > div {
31 height: auto !important;
32}