this repo has no description
1.list-form {
2 padding: 8px 0;
3 display: flex;
4 gap: 8px;
5 flex-direction: column;
6}
7
8.list-form-row :is(input[type='text'], select) {
9 width: 100%;
10 appearance: none;
11}
12
13.list-form-row .label-block {
14 display: flex;
15 padding: 8px 0;
16 gap: 4px;
17}
18
19.list-form-footer {
20 display: flex;
21 gap: 8px;
22 justify-content: space-between;
23}
24.list-form-footer button[type='submit'] {
25 padding-inline: 24px;
26}
27
28#list-manage-members-container ul {
29 display: block;
30 list-style: none;
31 padding: 8px 0;
32 margin: 0;
33}
34#list-manage-members-container ul li {
35 display: flex;
36 gap: 8px;
37 align-items: center;
38 justify-content: space-between;
39 padding: 8px 0;
40}