45 lines
641 B
Plaintext
45 lines
641 B
Plaintext
@import "theme.less";
|
|
|
|
#datapoints {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, min-content);
|
|
grid-gap: 8px 16px;
|
|
margin-top: 16px;
|
|
|
|
.header {
|
|
font-weight: @bold;
|
|
}
|
|
|
|
div {
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
.widgets {
|
|
display: grid;
|
|
grid-template-columns: min-content 1fr;
|
|
gap: 8px 16px;
|
|
|
|
.label {
|
|
margin-top: 4px;
|
|
}
|
|
|
|
input[type="text"], textarea {
|
|
width: 100%;
|
|
}
|
|
|
|
.datapoints {
|
|
display: grid;
|
|
grid-template-columns: min-content 1fr;
|
|
gap: 6px 8px;
|
|
font-family: "Roboto Mono", monospace;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.action {
|
|
display: grid;
|
|
grid-template-columns: min-content min-content;
|
|
grid-gap: 8px;
|
|
}
|
|
}
|