Pax1601 4ae72b7c0b Front end tweaks
Added visibility options and server log panel
2023-07-21 17:33:24 +02:00

29 lines
441 B
CSS

#log-panel>div:first-child {
width: 100%;
height: 38px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
}
#log-panel svg {
pointer-events: none;
}
#log-panel>div:nth-child(2) {
display: none;
margin-top: 5px;
width: 100%;
height: calc(100% - 40px);
background-color: #00000055;
}
#log-panel.open {
height: 505px;
}
#log-panel.open>div:nth-child(2) {
display: block;
}