Fix oscilloscope CSS: use is:global for child component styles
Astro scopes <style> block imports to the authoring component. Since OscilloscopeDisplay.astro is a child of index.astro, the scoped selectors didn't match. Move the CSS import into the component itself with is:global.
This commit is contained in:
parent
4b2ce896b5
commit
67bb47c0cd
@ -599,3 +599,7 @@
|
|||||||
// Re-init on Astro page transitions
|
// Re-init on Astro page transitions
|
||||||
document.addEventListener('astro:page-load', initAll);
|
document.addEventListener('astro:page-load', initAll);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style is:global>
|
||||||
|
@import '../styles/oscilloscope.css';
|
||||||
|
</style>
|
||||||
|
|||||||
@ -24,7 +24,6 @@ try {
|
|||||||
>
|
>
|
||||||
<style>
|
<style>
|
||||||
@import '../styles/homepage.css';
|
@import '../styles/homepage.css';
|
||||||
@import '../styles/oscilloscope.css';
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<!-- Hero: Split layout — text left, animated scope visual right -->
|
<!-- Hero: Split layout — text left, animated scope visual right -->
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user