this repo has no description
1.settings-menu{
2 position: fixed;
3 z-index: 110;
4 top: 0;
5 left: 0;
6 width: 100vw;
7 height: 100vh;
8 background: rgba(0, 0, 0, 0.75);
9 }
10
11.settings-menu-inner{
12 position: fixed;
13 top: 50%;
14 left: 50%;
15 transform: translate(-50%, -50%);
16 padding: 10px;
17 background: #373738;
18 border-radius: 10px;
19 width: 40%;
20 height: 80%;
21}
22
23.settings-menu-close{
24 width: 25px;
25 height: 43px;
26 display: flex;
27 justify-content: center;
28 align-items: center;
29}
30
31.settings-menu-header{
32 width: 100%;
33 height: 50px;
34}
35
36.settings-menu-content{
37 width: 100%;
38 height: calc(100% - 50px);
39 overflow-x: hidden;
40 overflow-y: auto;
41}