mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-05-20 01:09:26 +00:00
25 lines
401 B
CSS
25 lines
401 B
CSS
#window-controls {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
.window-controls {
|
|
display: flex;
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
.control-btn {
|
|
width: 35px;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
line-height: 20px;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
pointer-events: auto;
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
.control-btn:hover{
|
|
background-color: #f0f0f0;
|
|
}
|
|
|