From 151df4b1d9f50379d3adcffb1ca50af6a18350e9 Mon Sep 17 00:00:00 2001 From: Jordan Baird Date: Sun, 27 Oct 2024 14:58:23 -0600 Subject: [PATCH] Update IceGroupBox.swift --- Ice/UI/IceUI/IceGroupBox.swift | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/Ice/UI/IceUI/IceGroupBox.swift b/Ice/UI/IceUI/IceGroupBox.swift index a7691284..ebfeb9ae 100644 --- a/Ice/UI/IceUI/IceGroupBox.swift +++ b/Ice/UI/IceUI/IceGroupBox.swift @@ -80,16 +80,18 @@ struct IceGroupBox: View { var body: some View { VStack(alignment: .leading) { header - content - .padding(padding) - .background { - backgroundShape - .fill(.quinary) - .overlay { - backgroundShape - .stroke(.quaternary) - } - } + VStack { + content + } + .padding(padding) + .background { + backgroundShape + .fill(.quinary) + .overlay { + backgroundShape + .stroke(.quaternary) + } + } footer } }