TheCodedProf | c86e44b | 2023-02-28 17:30:57 -0500 | [diff] [blame^] | 1 | .horizontalFlex { |
2 | width: 100vw; | ||||
3 | display: flex; | ||||
4 | flex-direction: row; | ||||
5 | justify-content: left; | ||||
6 | align-items: center; | ||||
7 | gap: 10px; | ||||
8 | } | ||||
9 | |||||
10 | .container { | ||||
11 | width: 100vw; | ||||
12 | display: flex; | ||||
13 | flex-direction: row; | ||||
14 | justify-content: left; | ||||
15 | align-items: top; | ||||
16 | gap: 10px; | ||||
17 | margin-top: 20px; | ||||
18 | } | ||||
19 | |||||
20 | .verticalFlex { | ||||
21 | width: 100vw; | ||||
22 | display: flex; | ||||
23 | flex-direction: column; | ||||
24 | justify-content: left; | ||||
25 | align-items: flex-start; | ||||
26 | gap: 10px; | ||||
27 | } | ||||
28 | |||||
29 | .avatar { | ||||
30 | border-radius: 25px; | ||||
31 | } | ||||
32 | |||||
33 | .botBadge { | ||||
34 | background-color: #6576CC; | ||||
35 | color: white; | ||||
36 | border-radius: 5px; | ||||
37 | padding: 2px 5px; | ||||
38 | font-size: 12px; | ||||
39 | } |