Add missing backtics to scopedStyleStrategy
value (#8275)
This commit is contained in:
parent
28a49f8e0d
commit
264bbba4e0
1 changed files with 1 additions and 1 deletions
|
@ -623,7 +623,7 @@ export interface AstroUserConfig {
|
|||
*
|
||||
* Using `'class'` is helpful when you want to ensure that element selectors within an Astro component override global style defaults (e.g. from a global stylesheet).
|
||||
* Using `'where'` gives you more control over specifity, but requires that you use higher-specifity selectors, layers, and other tools to control which selectors are applied.
|
||||
* Using 'attribute' is useful when you are manipulating the `class` attribute of elements and need to avoid conflicts between your own styling logic and Astro's application of styles.
|
||||
* Using `'attribute'` is useful when you are manipulating the `class` attribute of elements and need to avoid conflicts between your own styling logic and Astro's application of styles.
|
||||
*/
|
||||
scopedStyleStrategy?: 'where' | 'class' | 'attribute';
|
||||
|
||||
|
|
Loading…
Reference in a new issue