chrome-devtools-frontend
Version:
Chrome DevTools UI
34 lines (29 loc) • 712 B
CSS
/*
* Copyright 2017 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.
*/
.widget {
display: flex;
font: var(--sys-typescale-body4-regular);
box-shadow: var(--sys-elevation-level2);
color: var(--sys-color-on-surface);
background-color: var(--sys-color-base-container-elevated);
border-radius: var(--sys-shape-corner-small);
padding: var(--sys-size-4);
user-select: text;
overflow: auto;
}
.squiggles-content {
display: flex;
flex-direction: column;
gap: 5px;
}
.squiggles-content-item {
display: flex;
align-items: center;
gap: 5px;
& devtools-icon {
cursor: pointer;
}
}