}
+
+
diff --git a/site/src/components/shortcodes/SpacingNotation.astro b/site/src/components/shortcodes/SpacingNotation.astro
index c9adb2554e5f..4ad0fd3df60f 100644
--- a/site/src/components/shortcodes/SpacingNotation.astro
+++ b/site/src/components/shortcodes/SpacingNotation.astro
@@ -55,13 +55,13 @@ const capitalizedNoun = noun.charAt(0).toUpperCase() + noun.slice(1)
// Multipliers for sizes `1` through `9`, mirroring the default `$spacers` map.
const sizeValues = [
'$spacer * .25',
+ '$spacer * .375',
'$spacer * .5',
'$spacer * .75',
'$spacer',
'$spacer * 1.25',
'$spacer * 1.5',
'$spacer * 2',
- '$spacer * 2.5',
'$spacer * 3'
]
---
diff --git a/site/src/content/docs/components/card.mdx b/site/src/content/docs/components/card.mdx
index 2001f5b221f5..ee36664f8f37 100644
--- a/site/src/content/docs/components/card.mdx
+++ b/site/src/content/docs/components/card.mdx
@@ -431,9 +431,9 @@ In addition to styling the content within cards, Bootstrap includes a few option
Use card groups to render cards as a single, attached element with equal width and height columns. Card groups start off stacked and use `display: flex;` to become attached with uniform dimensions starting at the `sm` breakpoint.
-This layout uses [container queries]([[docsref:/layout/breakpoints#container-queries]]), so wrap the card group in a query container—add the `.contains-inline` utility to a parent element—for the row layout to take effect. Without a query container, the cards remain stacked.
+This layout uses [container queries]([[docsref:/layout/breakpoints#container-queries]]), so wrap the card group in a query container—add the `.container-inline` utility to a parent element—for the row layout to take effect. Without a query container, the cards remain stacked.
-