2024-10-18 00:19:13 +02:00
|
|
|
// Copyright 2024, Command Line Inc.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2024-10-28 07:02:28 +01:00
|
|
|
.sysinfo-view {
|
2024-12-04 22:49:14 +01:00
|
|
|
flex-flow: column nowrap;
|
|
|
|
flex-grow: 1;
|
|
|
|
margin-bottom: 0;
|
|
|
|
overflow-y: auto;
|
|
|
|
.sysinfo-inner {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: repeat(auto-fit, minmax(100px, 1fr));
|
|
|
|
gap: 10px;
|
2024-10-18 00:19:13 +02:00
|
|
|
|
2024-12-04 22:49:14 +01:00
|
|
|
&.two-columns {
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
}
|
2024-10-18 00:19:13 +02:00
|
|
|
|
2024-12-04 22:49:14 +01:00
|
|
|
.sysinfo-plot-content {
|
|
|
|
min-height: 100px;
|
|
|
|
svg {
|
|
|
|
[aria-label="tip"] {
|
|
|
|
g {
|
|
|
|
path {
|
|
|
|
color: var(--border-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-10-18 00:19:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|