debug-server-next
Version:
Dev server for hippy-core.
38 lines (33 loc) • 916 B
JavaScript
// Copyright 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.
const styles = new CSSStyleSheet();
styles.replaceSync(
`/*
* Copyright 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.
*/
:host {
display: block;
}
.content {
background-color: var(--color-background);
display: grid;
grid-template-columns: min-content 1fr;
user-select: text;
}
.report-title {
padding: 12px 24px;
font-size: 15px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
border-bottom: 1px solid var(--color-details-hairline);
color: var(--color-text-primary);
background-color: var(--color-background);
grid-column-start: span 2;
}
/*# sourceURL=report.css */
`);
export default styles;