summaryrefslogtreecommitdiff
path: root/docs/src/pages/guides/styling.md
diff options
context:
space:
mode:
authorGravatar Marcus Otterström <35617441+MarcusOtter@users.noreply.github.com> 2021-07-30 09:53:24 +0200
committerGravatar GitHub <noreply@github.com> 2021-07-30 00:53:24 -0700
commit6d9ef9c0e935e9131dd1addacc2307c41e808a89 (patch)
tree3422aaf7f00884ef573165c6367d46ea5c201f63 /docs/src/pages/guides/styling.md
parente9d52bd1cc55b4a8f09ce13bebcc0d428acfd5a4 (diff)
downloadastro-6d9ef9c0e935e9131dd1addacc2307c41e808a89.tar.gz
astro-6d9ef9c0e935e9131dd1addacc2307c41e808a89.tar.zst
astro-6d9ef9c0e935e9131dd1addacc2307c41e808a89.zip
Fix typos and clarify docs (#880)
* Add more missing words * Add missing dot * Add another missing dot * Clarify what optimized css means (discussed on Discord) * Remove oxford comma Co-authored-by: Fred K. Schott <fkschott@gmail.com>
Diffstat (limited to 'docs/src/pages/guides/styling.md')
-rw-r--r--docs/src/pages/guides/styling.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/pages/guides/styling.md b/docs/src/pages/guides/styling.md
index 43dc4f206..1c3c34679 100644
--- a/docs/src/pages/guides/styling.md
+++ b/docs/src/pages/guides/styling.md
@@ -77,7 +77,7 @@ Styling in Astro is meant to be as flexible as you’d like it to be! The follow
¹ _`.astro` files have no runtime, therefore Scoped CSS takes the place of CSS Modules (styles are still scoped to components, but don’t need dynamic values)_
-All styles in Astro are automatically [**autoprefixed**](#cross-browser-compatibility) and optimized, so you can just write CSS and we’ll handle the rest ✨.
+All styles in Astro are automatically [**autoprefixed**](#cross-browser-compatibility), minified and bundled, so you can just write CSS and we’ll handle the rest ✨.
---