Skip to content

Commit 10f9c0f

Browse files
authored
Merge pull request #477 from johnsonjsyuen/patch-1
Update wrong path for theme in example
2 parents dc45637 + 9f60951 commit 10f9c0f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

THEMING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Now run `npm run prepare` to build the CSS file(s), then add it/them on your pag
3636

3737
```html
3838
<!-- SMUI Styles -->
39-
<link rel="stylesheet" href="/static/smui.css" />
39+
<link rel="stylesheet" href="smui.css" />
4040
```
4141

4242
Or for dark mode support.
@@ -45,12 +45,12 @@ Or for dark mode support.
4545
<!-- SMUI Styles -->
4646
<link
4747
rel="stylesheet"
48-
href="/static/smui.css"
48+
href="smui.css"
4949
media="(prefers-color-scheme: light)"
5050
/>
5151
<link
5252
rel="stylesheet"
53-
href="/static/smui-dark.css"
53+
href="smui-dark.css"
5454
media="screen and (prefers-color-scheme: dark)"
5555
/>
5656
```

0 commit comments

Comments
 (0)