diff options
Diffstat (limited to 'packages/astro/test/fixtures/css-dangling-references/src/components/DynamicallyImportedComponent2.svelte')
-rw-r--r-- | packages/astro/test/fixtures/css-dangling-references/src/components/DynamicallyImportedComponent2.svelte | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/astro/test/fixtures/css-dangling-references/src/components/DynamicallyImportedComponent2.svelte b/packages/astro/test/fixtures/css-dangling-references/src/components/DynamicallyImportedComponent2.svelte new file mode 100644 index 000000000..7c344f93d --- /dev/null +++ b/packages/astro/test/fixtures/css-dangling-references/src/components/DynamicallyImportedComponent2.svelte @@ -0,0 +1,6 @@ +<style> + p { + background-color: lavender; + } +</style> +<p>This sentence should have a lavender background color.</p> |