Document width and height styles
This commit is contained in:
parent
f09df31480
commit
8c02de6c61
1 changed files with 5 additions and 5 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue