1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| .wrapper {
| background-color: var(--td-gray-color-1);
| padding: 4px;
| border-radius: var(--td-border-radius);
| box-shadow: var(--td-shadow-4);
| margin-bottom: 8px;
| }
|
| .title-wrapper {
| display: flex;
| justify-content: space-between;
| align-items: center;
| }
|
| .descriptions-list__title {
| padding: 8px 8px;
| font-size: var(--td-font-size-m);
| display: flex;
| justify-content: space-between;
| align-items: center;
| font-weight: 600;
| }
|
|