diff --git a/docs/docs/components/callout.md b/docs/docs/components/callout.md
index 7e1863950..11021e56f 100644
--- a/docs/docs/components/callout.md
+++ b/docs/docs/components/callout.md
@@ -58,6 +58,71 @@ Set the `variant` attribute to change the callout's variant.
```
+### Appearance
+
+Use the `appearance` attribute to change the callout's visual appearance (the default is `outlined filled`).
+
+```html {.example}
+
+
+ This accent callout is also outlined
+
+
+
+
+
+
+ This accent callout draws attention without an outline
+
+
+
+
+
+
+ This callout is both filled and outlined
+
+
+
+
+
+
+ This callout is only filled
+
+
+
+
+
+
+ Here's an outlined callout
+
+
+
+
+
+
+ No bells and whistles on this plain callout
+
+```
+
+### Sizes
+
+Use the `size` attribute to change a callout's size.
+
+```html {.example}
+
+
+ This is meant to be very emphasized.
+
+
+
+ Normal-sized callout.
+
+
+
+ Just a small tip!
+
+```
+
### Without Icons
Icons are optional. Simply omit the `icon` slot if you don't want them.
diff --git a/docs/docs/components/card.md b/docs/docs/components/card.md
index d91e09252..6a3f4f791 100644
--- a/docs/docs/components/card.md
+++ b/docs/docs/components/card.md
@@ -60,7 +60,8 @@ Basic cards aren't very exciting, but they can display any content you want them
### Card with Header
-Headers can be used to display titles and more. Use the `with-header` attribute to add a header to the card.
+Headers can be used to display titles and more.
+If using SSR, you need to also use the `with-header` attribute to add a header to the card (if not, it is added automatically).
```html {.example}