@jupyter/web-components
Version:
A component library for building extensions in Jupyter frontends.
15 lines (14 loc) • 363 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';
/**
* Styles for AnchoredRegion
* @public
*/
export const anchoredRegionStyles = (context, definition) => css `
:host {
contain: layout;
display: block;
}
`;