diff --git a/crates/gpui/src/style.rs b/crates/gpui/src/style.rs index d5209bd5bd07ff811a6c902f5dc29db1c1b5a36f..ef2622e3eb61e61d35780d895d2a1ebc5d85057b 100644 --- a/crates/gpui/src/style.rs +++ b/crates/gpui/src/style.rs @@ -14,12 +14,13 @@ pub use taffy::style::{ Overflow, Position, }; -#[cfg(debug_assertions)] /// Use this struct for interfacing with the 'debug_below' styling from your own elements. /// If a parent element has this style set on it, then this struct will be set as a global in /// GPUI. +#[cfg(debug_assertions)] pub struct DebugBelow; +#[cfg(debug_assertions)] impl Global for DebugBelow {} /// The CSS styling that can be applied to an element via the `Styled` trait