diff options
author | 2021-08-09 00:10:26 +0200 | |
---|---|---|
committer | 2021-08-08 17:10:26 -0500 | |
commit | 4f096cbe6cdff9b4aeb77f3aaf39ff3e34dfabc1 (patch) | |
tree | 4a3f532f0d5d9411b95fc473c7cde39e6fdfffa2 /examples | |
parent | a64a7032466d8ba256542eb30cd0a7b415025755 (diff) | |
download | astro-4f096cbe6cdff9b4aeb77f3aaf39ff3e34dfabc1.tar.gz astro-4f096cbe6cdff9b4aeb77f3aaf39ff3e34dfabc1.tar.zst astro-4f096cbe6cdff9b4aeb77f3aaf39ff3e34dfabc1.zip |
Add CSS in example project: docs (#1062)
Diffstat (limited to 'examples')
-rw-r--r-- | examples/docs/src/layouts/Main.astro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/docs/src/layouts/Main.astro b/examples/docs/src/layouts/Main.astro index 47b09a18f..a00552b36 100644 --- a/examples/docs/src/layouts/Main.astro +++ b/examples/docs/src/layouts/Main.astro @@ -23,6 +23,8 @@ const githubEditUrl = `https://github.com/USER/REPO/blob/main/${currentFile}` <title>{content.title}</title> <link rel="stylesheet" href="/index.css" /> + <link rel="stylesheet" href="/theme.css" /> + <link rel="stylesheet" href="/code.css" /> <script src="/theme.js" /> <link rel="icon" type="image/svg+xml" |