34 lines
553 B
CSS
34 lines
553 B
CSS
.logs {
|
|
/* grid-area used in MonitoringPage.module.css */
|
|
grid-area: logs;
|
|
box-shadow: var(--panel-shadow);
|
|
|
|
height: 900px;
|
|
width: 450px;
|
|
|
|
.live {
|
|
width: .5rem;
|
|
height: .5rem;
|
|
left: .5rem;
|
|
background: red;
|
|
border-radius: 50%;
|
|
}
|
|
}
|
|
|
|
.chat-message.alternate {
|
|
align-items: end;
|
|
text-align: end;
|
|
|
|
background-color: color-mix(in oklab, canvas, 75% #86c4fa);
|
|
|
|
.message-head {
|
|
flex-direction: row-reverse;
|
|
}
|
|
}
|
|
|
|
.download-list {
|
|
box-sizing: border-box;
|
|
list-style: none;
|
|
height: 50dvh;
|
|
min-width: 300px;
|
|
} |