mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-18 08:02:27 +00:00
Document .size()
This commit is contained in:
parent
6e84d3cce0
commit
3e32504526
1 changed files with 2 additions and 2 deletions
|
@ -181,12 +181,12 @@ fn box_prefixes() -> Vec<(&'static str, bool, Vec<TokenStream2>, &'static str)>
|
|||
vec![quote! { size.width }],
|
||||
"Sets the width of the element. [Docs](https://tailwindcss.com/docs/width)",
|
||||
),
|
||||
("h", true, vec![quote! { size.height }], "todo!(docstring)"),
|
||||
("h", true, vec![quote! { size.height }], "Sets the height of the element. [Docs](https://tailwindcss.com/docs/height)"),
|
||||
(
|
||||
"size",
|
||||
true,
|
||||
vec![quote! {size.width}, quote! {size.height}],
|
||||
"Sets the height of the element. [Docs](https://tailwindcss.com/docs/height)",
|
||||
"Sets the width and height of the element."
|
||||
),
|
||||
(
|
||||
"min_w",
|
||||
|
|
Loading…
Reference in a new issue