/ frontend / src / index.css
index.css
 1  .vertical {
 2    display: flex;
 3    flex-direction: column;
 4  }
 5  
 6  .center-items {
 7    align-items: center;
 8  }
 9  
10  .horizontal {
11    display: flex;
12    flex-direction: row;
13  }
14  
15  .dot {
16    cursor: hand;
17  }
18  
19  .vertical-line {
20    background-color: grey;
21    flex: 1;
22    width: 1px;
23  }
24  
25  .content {
26    margin-left: 1ch;
27  }
28  
29  .subject {}
30  
31  .body {
32    padding: 1ch;
33  }
34  
35  .collapsed .body {
36    display: none;
37  }