Document width and height styles

This commit is contained in:
Marshall Bowers 2023-10-17 16:06:07 -04:00
parent f09df31480
commit 8c02de6c61

View file

@ -186,31 +186,31 @@ fn box_prefixes() -> Vec<(&'static str, bool, Vec<TokenStream2>, &'static str)>
"size",
true,
vec![quote! {size.width}, quote! {size.height}],
"todo!(docstring)",
"Sets the height of the element. [Docs](https://tailwindcss.com/docs/height)",
),
(
"min_w",
true,
vec![quote! { min_size.width }],
"todo!(docstring)",
"Sets the minimum width of the element. [Docs](https://tailwindcss.com/docs/min-width)",
),
(
"min_h",
true,
vec![quote! { min_size.height }],
"todo!(docstring)",
"Sets the minimum height of the element. [Docs](https://tailwindcss.com/docs/min-height)",
),
(
"max_w",
true,
vec![quote! { max_size.width }],
"todo!(docstring)",
"Sets the maximum width of the element. [Docs](https://tailwindcss.com/docs/max-width)",
),
(
"max_h",
true,
vec![quote! { max_size.height }],
"todo!(docstring)",
"Sets the maximum height of the element. [Docs](https://tailwindcss.com/docs/max-height)",
),
(
"m",