Skip to content

Commit 6fcd472

Browse files
authored
fix(mdx): add ?inline to css default import (#944)
* fix(mdx): add ?inline to css default import * fix: remove 'as any' leading to error on CI
1 parent 63c8842 commit 6fcd472

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/website/src/routes/docs/headless/popover/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Qwik UI | Popover
44

55
import { statusByComponent } from '~/_state/component-statuses';
66

7-
import styles from './snippets/popover.css';
7+
import styles from './snippets/popover.css?inline';
88

99
<StatusBanner status={statusByComponent.headless.Popover} />
1010

apps/website/src/routes/docs/headless/tooltip/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Qwik UI | Tooltip
44

55
import { statusByComponent } from '~/_state/component-statuses';
66

7-
import styles from './snippets/tooltip.css';
7+
import styles from './snippets/tooltip.css?inline';
88

99
<StatusBanner status={statusByComponent.headless.Tooltip} />
1010

0 commit comments

Comments
 (0)