@jupyter/web-components
Version:
A component library for building extensions in Jupyter frontends.
16 lines (15 loc) • 382 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 Data Grid
* @public
*/
export const dataGridStyles = (context, definition) => css `
:host {
display: flex;
position: relative;
flex-direction: column;
}
`;