@jupyter/web-components
Version:
A component library for building extensions in Jupyter frontends.
22 lines (20 loc) • 532 B
JavaScript
// Copyright (c) Jupyter Development Team.
// Copyright (c) Microsoft Corporation.
// Distributed under the terms of the Modified BSD License.
import { css } from '@microsoft/fast-element';
import { display } from '@microsoft/fast-foundation';
/**
* Styles for Tree View
* @public
*/
export const treeViewStyles = (context, definition) => css `
${display('flex')} :host {
flex-direction: column;
align-items: stretch;
min-width: fit-content;
font-size: 0;
}
:host:focus-visible {
outline: none;
}
`;