UNPKG

chrome-devtools-frontend

Version:
56 lines (47 loc) 817 B
/* * Copyright 2023 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. */ * { margin: 0; padding: 0; outline: none; box-sizing: border-box; font-size: inherit; } .extension-view { display: flex; flex-direction: column; height: 100%; } main { flex: 1; } iframe { border: none; height: 100%; width: 100%; } header { display: flex; padding: 3px 8px; justify-content: space-between; border-bottom: 1px solid var(--color-details-hairline); } header > div { align-self: center; } .icon { display: block; width: 16px; height: 16px; } .title { display: flex; flex-direction: row; gap: 6px; color: var(--color-text-secondary); align-items: center; font-weight: 500; }