linkerd2/web/app/css/line-graph.css

24 lines
268 B
CSS

@import 'styles.css';
@import 'scatterplot.css';
.chart-line {
fill: none;
stroke-width: 2px;
}
.line {
stroke: steelblue;
}
.line-p50 {
stroke: var(--latency-p50);
}
.line-p95 {
stroke: var(--latency-p95);
}
.line-p99 {
stroke: var(--latency-p99);
}