From a1a12846969b9afbf3bd71738638c92c39044280 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 17 Oct 2023 16:13:55 -0400 Subject: [PATCH] Document top/right/bottom/left styles --- crates/gpui3_macros/src/style_helpers.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/gpui3_macros/src/style_helpers.rs b/crates/gpui3_macros/src/style_helpers.rs index bb870da72e..15046ba224 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 }], "todo!(docstring)"), + ("top", true, vec![quote! { inset.top }], "Sets the top value for a positioned element. [Docs](https://tailwindcss.com/docs/top-right-bottom-left)",), ( "bottom", true, vec![quote! { inset.bottom }], - "todo!(docstring)", + "Sets the bottom value for a positioned element. [Docs](https://tailwindcss.com/docs/top-right-bottom-left)", ), ( "left", true, vec![quote! { inset.left }], - "todo!(docstring)", + "Sets the left value for a positioned element. [Docs](https://tailwindcss.com/docs/top-right-bottom-left)", ), ( "right", true, vec![quote! { inset.right }], - "todo!(docstring)", + "Sets the right value for a positioned element. [Docs](https://tailwindcss.com/docs/top-right-bottom-left)", ), ( "gap",