summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Yan Thomas <61414485+Yan-Thomas@users.noreply.github.com> 2023-08-29 19:36:28 -0300
committerGravatar GitHub <noreply@github.com> 2023-08-29 18:36:28 -0400
commit264bbba4e0fb514c5c7c5f9a8289a17619a46fab (patch)
tree34f074c42c866451f844aabcf61df0fe43fcbfd9
parent28a49f8e0d6ba453b2620cf7303d030a4f03b463 (diff)
downloadastro-264bbba4e0fb514c5c7c5f9a8289a17619a46fab.tar.gz
astro-264bbba4e0fb514c5c7c5f9a8289a17619a46fab.tar.zst
astro-264bbba4e0fb514c5c7c5f9a8289a17619a46fab.zip
Add missing backtics to `scopedStyleStrategy` value (#8275)
Diffstat (limited to '')
-rw-r--r--packages/astro/src/@types/astro.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts
index 4a2ad5264..acf11f3b0 100644
--- a/packages/astro/src/@types/astro.ts
+++ b/packages/astro/src/@types/astro.ts
@@ -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';