UNPKG

@utrecht/web-component-library-stencil

Version:

Stencil component library bundle for the Municipality of Utrecht based on the NL Design System architecture

30 lines (28 loc) 976 B
/** * @license EUPL-1.2 * Copyright (c) 2020-2024 Frameless B.V. * Copyright (c) 2021-2024 Gemeente Utrecht */ /** * @license EUPL-1.2 * Copyright (c) 2020-2024 Frameless B.V. * Copyright (c) 2021-2024 Gemeente Utrecht */ /* `@mixin utrecht-data-list--html-dl` is not necessary. * Default styles include only `display` and `margin`, and those properties are configured by default. */ /* `@mixin utrecht-data-list__item-key--html-dt` is not necessary, `<dt>` has no default styles. */ /* stylelint-disable-next-line block-no-empty */ /* stylelint-disable-next-line block-no-empty */ :host { display: contents; } dl { /* also set `margin-block` to reset browser styling of <dl> */ display: block; margin-block-end: calc(var(--utrecht-space-around, 0) * var(--utrecht-data-list-margin-block-end, 0)); margin-block-start: calc(var(--utrecht-space-around, 0) * var(--utrecht-data-list-margin-block-start, 0)); } :host([hidden]) { display: none !important; }