aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormrlife <[email protected]>2023-03-08 09:16:34 -0500
committerGitHub <[email protected]>2023-03-08 15:16:34 +0100
commit2a2c4abaf4791e00274ba78cbb9fc65674ab339f (patch)
tree8fcb5f19d982106f5f4cc6afe53ad46b10269594
parenta3f8480d5b5bb4fbb6be9f2f87b808648b4f0be4 (diff)
downloadbootstrap-2a2c4abaf4791e00274ba78cbb9fc65674ab339f.tar.xz
bootstrap-2a2c4abaf4791e00274ba78cbb9fc65674ab339f.zip
Docs: fix typo in Color modes page (#38198)
-rw-r--r--site/content/docs/5.3/customize/color-modes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/content/docs/5.3/customize/color-modes.md b/site/content/docs/5.3/customize/color-modes.md
index b59872de5..c6f9bef20 100644
--- a/site/content/docs/5.3/customize/color-modes.md
+++ b/site/content/docs/5.3/customize/color-modes.md
@@ -92,7 +92,7 @@ Our new dark mode option is available to use for all users of Bootstrap, but it'
We use a custom Sass mixin, `color-mode()`, to help you control _how_ color modes are applied. By default, we use a `data` attribute approach, allowing you to create more user-friendly experiences where your visitors can choose to have an automatic dark mode or control their preference (like in our own docs here). This is also an easy and scalable way to add different themes and more custom color modes beyond light and dark.
-In case you want to use media queries and only make color modes automatic, you can change the mixin's default type via Sass variable. Consider the following snippet and it's compiled CSS output.
+In case you want to use media queries and only make color modes automatic, you can change the mixin's default type via Sass variable. Consider the following snippet and its compiled CSS output.
```scss
$color-mode-type: data;