this repo has no description
1.control-bar{
2 position: fixed;
3 top: 20px;
4 left: 20px;
5 height: 40px;
6 z-index: 100;
7 width: calc(100vw - 40px);
8 background: #272e44;
9 border-radius: 20px;
10 display: flex;
11 padding: 10px 20px;
12 align-items: center;
13}
14
15.button{
16 padding: 5px 10px;
17 margin: 0 10px;
18 background: #445077;
19 border-radius: 5px;
20 transition: 0.1s;
21 cursor: pointer;
22 user-select: none;
23 -webkit-user-select: none;
24 width: fit-content;
25}
26
27.button:hover{
28 background: #363f5e;
29}