diff options
Diffstat (limited to 'docs/src/pages/en/guides/styling.md')
-rw-r--r-- | docs/src/pages/en/guides/styling.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/src/pages/en/guides/styling.md b/docs/src/pages/en/guides/styling.md index a32190704..7b7e8b612 100644 --- a/docs/src/pages/en/guides/styling.md +++ b/docs/src/pages/en/guides/styling.md @@ -239,7 +239,9 @@ Lastly, add it to your Astro page (or layout template): ```astro <head> - <link rel="stylesheet" href={Astro.resolve('../styles/global.css')}> + <style global> + @import "../styles/global.css"; + </style> </head> ``` |