diff --git a/crates/gpui3_macros/src/style_helpers.rs b/crates/gpui3_macros/src/style_helpers.rs index 7210867c80713cae023538a12db63839a4b90d50..c8558e6e643cf7eb99b188db1cfc9f0d5fa1efe4 100644 --- a/crates/gpui3_macros/src/style_helpers.rs +++ b/crates/gpui3_macros/src/style_helpers.rs @@ -319,19 +319,19 @@ fn box_prefixes() -> Vec<(&'static str, bool, Vec, &'static str)> "gap", false, vec![quote! { gap.width }, quote! { gap.height }], - "todo!(docstring)", + "Sets the gap between rows and columns in flex layouts. [Docs](https://tailwindcss.com/docs/gap)" ), ( "gap_x", false, vec![quote! { gap.width }], - "todo!(docstring)", + "Sets the gap between columns in flex layouts. [Docs](https://tailwindcss.com/docs/gap#changing-row-and-column-gaps-independently)" ), ( "gap_y", false, vec![quote! { gap.height }], - "todo!(docstring)", + "Sets the gap between rows in flex layouts. [Docs](https://tailwindcss.com/docs/gap#changing-row-and-column-gaps-independently)" ), ] }