component guidelines

This commit is contained in:
Jon McClure 2023-09-20 18:52:23 +01:00
parent 6508712beb
commit 07b4d8d742

View file

@ -137,10 +137,8 @@ In rare cases, you can use the SCSS `:global` operator to style child elements i
<style lang="scss">
svg {
:global {
path {
stroke: black;
}
:global(path) {
stroke: black;
}
}
</style>