1 .Box {
2 position: fixed;
3 top: 0;
4 right: 0;
5 bottom: 0;
6 left: 0;
7 background: rgba(140, 149, 159, 0.15);
8 }
9
10 .Box_1 {
11 position: fixed;
12 right: 0;
13 bottom: 0;
14 width: 300px;
15 z-index: 1;
16 }
17
18 .Box_2 {
19 display: flex;
20 flex-direction: column;
21 height: 100%;
22 background: #333333;
23 overflow: auto;
24 }
25
26 .Box_3 {
27 display: flex;
28 flex-direction: column;
29 flex: 1 0 auto;
30 color: #e1e4e8;
31 background: #333333;
32 }
33
34 .Box_4 {
35 display: flex;
36 flex-direction: column;
37 }
38
39 .Button {
40 margin-left: 16px;
41 }
42
43 .Button:focus-visible {
44 outline: 2px solid;
45 outline-color: -webkit-focus-ring-color;
46 outline-offset: 1px;
47 }
48
49 .DarkTheme {
50 color: #e1e4e8;
51 background: #333333;
52 padding-left: 16px;
53 padding-right: 16px;
54 align-items: center;
55 justify-content: space-between;
56 display: flex;
57 }