@jupyter/web-components
Version:
A component library for building extensions in Jupyter frontends.
24 lines (22 loc) • 686 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';
import { bodyFont, typeRampBaseFontSize, typeRampBaseLineHeight } from '../design-tokens.js';
/**
* Styles for Breadcrumb
* @public
*/
export const breadcrumbStyles = (context, definition) => css `
${display('inline-block')} :host {
box-sizing: border-box;
font-family: ${bodyFont};
font-size: ${typeRampBaseFontSize};
line-height: ${typeRampBaseLineHeight};
}
.list {
display: flex;
flex-wrap: wrap;
}
`;