Restore `Sized` bound on `StyleHelpers`

Marshall Bowers created

Change summary

crates/gpui3/src/style_helpers.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/gpui3/src/style_helpers.rs 🔗

@@ -5,7 +5,7 @@ use crate::{
 };
 use smallvec::smallvec;
 
-pub trait StyleHelpers: Styled<Style = Style> {
+pub trait StyleHelpers: Sized + Styled<Style = Style> {
     gpui3_macros::style_helpers!();
 
     fn h(mut self, height: Length) -> Self {