chrome-devtools-frontend
Version:
Chrome DevTools UI
55 lines (48 loc) • 1.03 kB
CSS
/*
* Copyright 2026 The Chromium Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
:host {
padding: 12px;
display: flex;
flex-direction: column;
overflow: auto;
}
.metrics-container {
flex: 0 0 auto;
margin: 0 0 24px;
border: 1px solid var(--sys-color-divider);
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1px;
background-color: var(--sys-color-divider);
}
.metric-box {
background-color: var(--sys-color-surface);
padding: 12px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.metric-title {
font-size: 12px;
color: var(--sys-color-on-surface-subtle);
margin: 0 0 4px;
}
.metric-value {
font-size: 18px;
font-weight: bold;
color: var(--sys-color-on-surface);
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
gap: 2px;
}
.metric-average {
font-size: 12px;
font-weight: normal;
color: var(--sys-color-on-surface-subtle);
}