diff --git a/README.md b/README.md
index af6bab0fa1..415060afa6 100644
--- a/README.md
+++ b/README.md
@@ -82,38 +82,81 @@ _Are we missing your favorite state management library? Add it to the list above
### ๐
Styling
-If youโve used [Svelte][svelte]โs styles before, Astro works almost the same way. In any `.astro` file, start writing styles in a `
-
Iโm a scoped style
-```
+ /* Scoped element selector within the component */
+ h1 {
+ color: red;
+ }
-#### ๐ Sass
-
-Astro also supports [Sass][sass] out-of-the-box; no configuration needed:
-
-```html
-
-Title
+Iโm a scoped style and only apply to this component
+I have both scoped and global styles
```
-Supports:
+**Tips**
-- `lang="scss"`: load as the `.scss` extension
-- `lang="sass"`: load as the `.sass` extension (no brackets; indent-style)
+- `
- Vue CSS Modules
+ Vue Global CSS
diff --git a/test/fixtures/astro-styles-ssr/astro/components/VueModules.vue b/test/fixtures/astro-styles-ssr/astro/components/VueModules.vue
index 9bebf528be..bd520fec46 100644
--- a/test/fixtures/astro-styles-ssr/astro/components/VueModules.vue
+++ b/test/fixtures/astro-styles-ssr/astro/components/VueModules.vue
@@ -5,5 +5,5 @@
- Vue CSS Modules
+ Vue CSS Modules
diff --git a/test/fixtures/astro-styles-ssr/astro/pages/index.astro b/test/fixtures/astro-styles-ssr/astro/pages/index.astro
index ed788e217b..45f9683ac5 100644
--- a/test/fixtures/astro-styles-ssr/astro/pages/index.astro
+++ b/test/fixtures/astro-styles-ssr/astro/pages/index.astro
@@ -1,5 +1,6 @@
---
import ReactCSS from '../components/ReactCSS.jsx';
+import ReactModules from '../components/ReactModules.jsx';
import VueCSS from '../components/VueCSS.vue';
import VueScoped from '../components/VueScoped.vue';
import VueModules from '../components/VueModules.vue';
@@ -20,6 +21,7 @@ import SvelteScoped from '../components/SvelteScoped.svelte';
+