chrome-devtools-frontend
Version:
Chrome DevTools UI
28 lines (24 loc) • 511 B
CSS
/*
* Copyright 2014 The Chromium Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
.request-payload-view {
user-select: text;
overflow: auto;
display: flex;
flex-direction: column;
}
.raw-payload-section {
flex: 1 1 auto;
min-height: 200px;
display: flex;
flex-direction: column;
border-top: 1px solid var(--sys-color-divider);
}
.request-payload-tree {
display: block;
flex-grow: 1;
overflow-y: auto;
margin: 0;
}