mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-18 08:02:27 +00:00
Tweak grammar
This commit is contained in:
parent
a1a1284696
commit
edc52e5b28
1 changed files with 4 additions and 4 deletions
|
@ -296,24 +296,24 @@ fn box_prefixes() -> Vec<(&'static str, bool, Vec<TokenStream2>, &'static str)>
|
||||||
vec![quote! { padding.right }],
|
vec![quote! { padding.right }],
|
||||||
"Sets the right padding of the element. [Docs](https://tailwindcss.com/docs/padding#add-padding-to-a-single-side)"
|
"Sets the right padding of the element. [Docs](https://tailwindcss.com/docs/padding#add-padding-to-a-single-side)"
|
||||||
),
|
),
|
||||||
("top", true, vec![quote! { inset.top }], "Sets the top value for a positioned element. [Docs](https://tailwindcss.com/docs/top-right-bottom-left)",),
|
("top", true, vec![quote! { inset.top }], "Sets the top value of a positioned element. [Docs](https://tailwindcss.com/docs/top-right-bottom-left)",),
|
||||||
(
|
(
|
||||||
"bottom",
|
"bottom",
|
||||||
true,
|
true,
|
||||||
vec![quote! { inset.bottom }],
|
vec![quote! { inset.bottom }],
|
||||||
"Sets the bottom value for a positioned element. [Docs](https://tailwindcss.com/docs/top-right-bottom-left)",
|
"Sets the bottom value of a positioned element. [Docs](https://tailwindcss.com/docs/top-right-bottom-left)",
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
"left",
|
"left",
|
||||||
true,
|
true,
|
||||||
vec![quote! { inset.left }],
|
vec![quote! { inset.left }],
|
||||||
"Sets the left value for a positioned element. [Docs](https://tailwindcss.com/docs/top-right-bottom-left)",
|
"Sets the left value of a positioned element. [Docs](https://tailwindcss.com/docs/top-right-bottom-left)",
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
"right",
|
"right",
|
||||||
true,
|
true,
|
||||||
vec![quote! { inset.right }],
|
vec![quote! { inset.right }],
|
||||||
"Sets the right value for a positioned element. [Docs](https://tailwindcss.com/docs/top-right-bottom-left)",
|
"Sets the right value of a positioned element. [Docs](https://tailwindcss.com/docs/top-right-bottom-left)",
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
"gap",
|
"gap",
|
||||||
|
|
Loading…
Reference in a new issue