From 1a3c15ee9926bf407d316673bd7631c6a2fa72bb Mon Sep 17 00:00:00 2001 From: JPToroDev Date: Fri, 27 Dec 2024 14:19:20 -0500 Subject: [PATCH] Clean up `VStack`. --- Sources/Ignite/Elements/VStack.swift | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Sources/Ignite/Elements/VStack.swift b/Sources/Ignite/Elements/VStack.swift index 8b881122..b8cf867b 100644 --- a/Sources/Ignite/Elements/VStack.swift +++ b/Sources/Ignite/Elements/VStack.swift @@ -80,11 +80,6 @@ public struct VStack: BlockHTML { var attributes = attributes attributes.append(classes: "vstack") - attributes.append(styles: - .init(name: "display", value: "flex"), - .init(name: "width", value: "100%") - ) - if let customSpacing { attributes.append(styles: .init(name: .gap, value: "\(customSpacing)px")) } else if let systemSpacing {