mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
35 lines
508 B
CSS
35 lines
508 B
CSS
#titlebar {
|
|
height: 20px;
|
|
width: 100%;
|
|
}
|
|
|
|
#titlebar #drag-region {
|
|
-webkit-app-region: drag;
|
|
}
|
|
|
|
#window-title{
|
|
height: 100%;
|
|
display: flex;
|
|
align-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#window-controls {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 46px);
|
|
height: 100%;
|
|
}
|
|
|
|
#window-controls .button {
|
|
grid-row: 1 / span 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#close-button:hover {
|
|
background: #E81123 !important;
|
|
}
|