diff --git a/docs/source/docs/flexbox-flex-grow-shrink.blade.md b/docs/source/docs/flexbox-flex-grow-shrink.blade.md
index 17512aad8..8a7af3ef1 100644
--- a/docs/source/docs/flexbox-flex-grow-shrink.blade.md
+++ b/docs/source/docs/flexbox-flex-grow-shrink.blade.md
@@ -6,13 +6,69 @@ category: "Flexbox"
# Flex, Grow, & Shrink
-
-
+
Utilities for controlling how flex items grow and shrink.
-
-
Responsive
+@include('_partials.feature-badges', [
+ 'responsive' => true,
+ 'customizable' => false,
+ 'hover' => false,
+ 'focus' => false
+])
+
+
+
+
+
+ | Class |
+ Properties |
+ Description |
+
+
+
+
+ | .flex-initial |
+ flex: initial; |
+ Allow a flex item to shrink but not grow, taking into account it's initial size. |
+
+
+ | .flex-1 |
+ flex: 1; |
+ Allow a flex item to grow and shrink as needed, ignoring it's initial size. |
+
+
+ | .flex-auto |
+ flex: auto; |
+ Allow a flex item to grow and shrink, taking into account it's initial size. |
+
+
+ | .flex-none |
+ flex: none; |
+ Prevent a flex item from growing or shrinking. |
+
+
+ | .flex-grow |
+ flex-grow: 1; |
+ Allow a flex item to grow to fill any available space. |
+
+
+ | .flex-shrink |
+ flex-shrink: 1; |
+ Allow a flex item to shrink if needed. |
+
+
+ | .flex-no-grow |
+ flex-grow: 0; |
+ Prevent a flex item from growing. |
+
+
+ | .flex-no-shrink |
+ flex-shrink: 0; |
+ Prevent a flex item from shrinking. |
+
+
+
### Initial
Default