返回 AiToEarn
windowControlButtons.module.scss
根目录 / project / aitoearn-electron / src / components / WindowControlButtons / windowControlButtons.module.scss
1 .windowControlButtons {
2 white-space: nowrap;
3 display: flex;
4 align-items: center;
5 height: 100%;
6 cursor: pointer;
7
8 .minimize, .maximize, .close {
9 height: 100%;
10 display: flex;
11 align-items: center;
12 justify-content: center;
13 background: transparent;
14 transition: 0.3s;
15 width: 45px;
16 color: #595959;
17 font-size: 14px;
18 &:hover {
19 background: rgba(255, 255, 255, 0.2);
20 }
21 }
22 .minimize {
23 }
24 .maximize {
25 }
26 .close {
27 &:hover {
28 color: #fff;
29 background: red;
30 }
31 }
32 }
32 lines Plain Text