chrome-devtools-frontend
Version:
Chrome DevTools UI
29 lines (24 loc) • 532 B
CSS
/*
* Copyright (c) 2021 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
.content {
display: grid;
grid-template-columns: min-content 1fr;
}
.key {
color: var(--sys-color-token-subtle);
padding: 0 6px;
text-align: right;
white-space: pre;
}
.value {
color: var(--sys-color-token-subtle);
margin-inline-start: 0;
padding: 0 6px;
}
.error-text {
color: var(--sys-color-error-bright);
font-weight: bold;
}