Document gap styles

This commit is contained in:
Marshall Bowers 2023-10-17 17:21:52 -04:00
parent 7a2b04a5d1
commit 218922d9f8

View file

@ -319,19 +319,19 @@ fn box_prefixes() -> Vec<(&'static str, bool, Vec<TokenStream2>, &'static str)>
"gap", "gap",
false, false,
vec![quote! { gap.width }, quote! { gap.height }], 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", "gap_x",
false, false,
vec![quote! { gap.width }], 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", "gap_y",
false, false,
vec![quote! { gap.height }], 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)"
), ),
] ]
} }