diff --git a/crates/gpui3_macros/src/style_helpers.rs b/crates/gpui3_macros/src/style_helpers.rs index 15046ba224..35171ff4bd 100644 --- a/crates/gpui3_macros/src/style_helpers.rs +++ b/crates/gpui3_macros/src/style_helpers.rs @@ -296,24 +296,24 @@ fn box_prefixes() -> Vec<(&'static str, bool, Vec, &'static str)> vec![quote! { padding.right }], "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", true, 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", true, 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", true, 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",