blob: 18b750700dce5d3f648bc298c53f7a7591677a76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
.controllers {
display: flex;
flex-direction: column;
align-items: end;
margin: 1rem 0;
}
.controllers-buttons {
display: flex;
align-items: center;
gap: 1rem;
}
.controllers button {
width: 3.5rem;
height: 3rem;
border-radius: 0.5rem;
background: #000;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
border: none;
cursor: pointer;
}
.controllers button:hover {
background: #555;
}
|