File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /* SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. */
2+ /* SPDX-License-Identifier: Apache-2.0 */
3+
4+ nve-page-header [nve-text ] {
5+ text-wrap-mode : nowrap;
6+ }
Original file line number Diff line number Diff line change 22// SPDX-License-Identifier: Apache-2.0
33
44import { html , LitElement } from 'lit' ;
5- import { useStyles , attachInternals } from '@nvidia-elements/core/internal' ;
5+ import { useStyles , attachInternals , appendRootNodeStyle } from '@nvidia-elements/core/internal' ;
66import styles from './page-header.css?inline' ;
7+ import globalStyles from './page-header.global.css?inline' ;
78
89/**
910 * @element nve-page-header
@@ -46,6 +47,7 @@ export class PageHeader extends LitElement {
4647
4748 connectedCallback ( ) : void {
4849 super . connectedCallback ( ) ;
50+ appendRootNodeStyle ( this , globalStyles ) ;
4951 attachInternals ( this ) ;
5052 this . _internals . role = 'navigation' ;
5153 }
You can’t perform that action at this time.
0 commit comments