Files
bs-manager/src/renderer/components/title-bar/title-bar.component.css
T
2022-06-03 22:01:01 +02:00

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;
}