chrome-devtools-frontend
Version:
Chrome DevTools UI
45 lines (37 loc) • 1.03 kB
text/typescript
// Copyright 2020 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.
import * as Lit from '../../lit/lit.js';
const {html} = Lit;
export function init(): void {
const container = document.createElement('ul');
// clang-format off
// eslint-disable-next-line rulesdir/no-a-tags-in-lit
Lit.render(html`
<style>
.docs-breadcrumbs {
display: flex;
list-style: none;
position: fixed;
background: rgb(255 255 255 / .8);
padding: 5px;
bottom: 0;
left: 10px;
width: 300px;
}
.docs-breadcrumbs li a {
display: block;
padding: 10px;
font-size: 16px;
}
.docs-breadcrumbs span {
font-size: 20px;
}
</style>
<ul class="docs-breadcrumbs component-docs-ui">
<li><a href="/">Index</a></li>
<li><a href=".">All component examples</a></li>
</ul>`, container);
// clang-format on
document.body.appendChild(container);
}